/* ============================================
   独立站陪跑营学员系统 · 原型样式 v5
   配色对齐 liezhe.com（天蓝 #2080f7 / 橙 #ff6923 / 绿 #06984f）
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #2080f7;          /* 官网主蓝 */
  --brand-2: #22b8e6;        /* 往青色走，做“蓝天→海”渐变 */
  --brand-dark: #1266d4;
  --brand-light: #e2eeff;
  --glow: rgba(32,128,247,.85);   /* 品牌色投影 */

  /* 底色带一点天蓝，跟白卡片拉开 */
  --bg: #e4ebf4;
  --card: #ffffff;
  --muted: #f1f5fa;
  --line: #d5dfeb;
  --line-2: #e7eef6;

  --text: #0d1520;
  --text-2: #445164;
  --text-3: #6b788b;

  --green: #067a41;   --green-bg: #d9f4e6;   --green-tint: #f0fbf5;
  --amber: #b04510;   --amber-bg: #ffe4d3;   --amber-tint: #fff6f0;   /* 官网橙 #ff6923 系 */
  --red:   #c02626;   --red-bg:   #fde0e0;   --red-tint:   #fff4f4;
  --blue:  #1266d4;   --blue-bg:  #dcebff;   --blue-tint:  #f0f6ff;
  --cyan:  #0b7c9e;   --cyan-bg:  #d5f0f9;   --cyan-tint:  #f0fafd;

  --ink: #0d1b2f;
  --shadow-sm: 0 1px 2px rgba(13,27,47,.07), 0 1px 1px rgba(13,27,47,.04);
  --shadow: 0 2px 4px rgba(13,27,47,.05), 0 12px 28px -14px rgba(13,27,47,.3);
  --shadow-lg: 0 4px 8px rgba(13,27,47,.07), 0 28px 56px -22px rgba(13,27,47,.42);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
               "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(820px 420px at 88% -12%, rgba(34,184,230,.26), transparent 64%),
    radial-gradient(700px 360px at 2% 2%, rgba(32,128,247,.20), transparent 62%),
    radial-gradient(620px 480px at 62% 112%, rgba(32,128,247,.09), transparent 64%);
  background-attachment: fixed;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "tnum";
}

a { color: inherit; text-decoration: none; }
b, strong { font-weight: 700; }

/* ---------- 骨架 ---------- */
.shell { display: flex; min-height: 100vh; }

.sidebar {
  width: 240px; flex-shrink: 0;
  background: #0d1b2f;
  background-image:
    radial-gradient(460px 320px at 20% 0%, rgba(32,128,247,.34), transparent 66%),
    radial-gradient(420px 300px at 90% 100%, rgba(34,184,230,.16), transparent 66%);
  color: #c6d2e2;
  position: fixed; top: 0; bottom: 0; left: 0;
  overflow-y: auto; padding-bottom: 28px;
}
.sidebar::-webkit-scrollbar { width: 5px; }
.sidebar::-webkit-scrollbar-thumb { background: #2b3d56; border-radius: 3px; }

.logo { padding: 21px 20px 20px; display: flex; align-items: center; gap: 11px; }
.logo .mark {
  width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; letter-spacing: -.5px;
  box-shadow: 0 6px 18px -4px rgba(32,128,247,.8);
}
.logo .mark svg { width: 19px; height: 19px; }
.logo b { font-size: 14.5px; font-weight: 700; letter-spacing: -.2px; display: block; line-height: 1.35; color: #fff; }
.logo small { display: block; font-size: 11px; color: #7b8ca3; line-height: 1.3; }

.nav-group { padding: 2px 12px; }
.nav-group + .nav-group { margin-top: 18px; }
.nav-group-title {
  font-size: 10.5px; color: #6b7d94; padding: 0 10px 7px;
  letter-spacing: 1.2px; font-weight: 700; text-transform: uppercase;
}
.nav-item {
  display: flex; align-items: center; gap: 11px;
  padding: 8px 11px; color: #aebdd0; font-size: 13.5px;
  cursor: pointer; border-radius: 9px; margin-bottom: 2px;
  transition: background .12s, color .12s;
}
.nav-item:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-item.active {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 135%);
  color: #fff; font-weight: 600;
  box-shadow: 0 8px 22px -8px var(--glow);
}
.nav-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .8; }
.nav-item.active svg { opacity: 1; }
.nav-item .badge {
  margin-left: auto; background: rgba(255,255,255,.11); color: #c6d2e2;
  font-size: 10.5px; padding: 0 7px; border-radius: 20px; font-weight: 700;
}
.nav-item.active .badge { background: rgba(255,255,255,.25); color: #fff; }
.nav-item .soon {
  margin-left: auto; font-size: 10px; color: #6b7d94;
  border: 1px solid #2b3d56; padding: 0 5px; border-radius: 4px;
}

.main { flex: 1; margin-left: 240px; min-width: 0; }

/* ---------- 顶栏 ---------- */
.topbar {
  height: 62px; background: rgba(228,235,244,.86);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(13,27,47,.1);
  display: flex; align-items: center; padding: 0 34px; gap: 16px;
  position: sticky; top: 0; z-index: 30;
}
.site-switcher { position: relative; }
.site-switcher-btn {
  display: flex; align-items: center; gap: 9px;
  border: 1px solid var(--line); background: #fff;
  padding: 7px 13px; border-radius: 11px; cursor: pointer;
  font-size: 13.5px; font-family: inherit; color: var(--text);
  box-shadow: var(--shadow-sm);
}
.site-switcher-btn:hover { border-color: #b6c7dc; }
.site-switcher-btn .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #06984f;
  box-shadow: 0 0 0 3px rgba(6,152,79,.22);
}
.site-switcher-btn .caret { color: var(--text-3); font-size: 9px; margin-left: 2px; }

.site-dropdown {
  display: none; position: absolute; top: 46px; left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 15px;
  box-shadow: var(--shadow-lg); width: 340px; padding: 7px; z-index: 50;
}
.site-dropdown.open { display: block; }
.site-opt { padding: 11px 13px; border-radius: 11px; cursor: pointer; }
.site-opt:hover { background: var(--muted); }
.site-opt.cur { background: var(--brand-light); }
.site-opt .n { font-weight: 600; display: flex; align-items: center; gap: 8px; }
.site-opt .m { font-size: 12.5px; color: var(--text-3); margin-top: 1px; }
.site-add {
  padding: 11px 13px; border-top: 1px solid var(--line-2);
  margin-top: 4px; color: var(--brand); cursor: pointer; font-size: 13px; font-weight: 600;
}

.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 9px; }
.quota-chip {
  font-size: 12.5px; color: var(--text-2); font-weight: 500;
  background: #fff; border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 20px;
}
.quota-chip b { color: var(--text); font-weight: 700; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 700; margin-left: 4px;
  box-shadow: 0 6px 16px -5px rgba(32,128,247,.85);
}

/* ---------- 页面 ---------- */
.page { padding: 30px 34px 90px; max-width: 1300px; }
.page-head { margin-bottom: 22px; }
.page-title { font-size: 26px; font-weight: 800; letter-spacing: -.9px; line-height: 1.28; }
.page-sub { color: var(--text-2); margin-top: 5px; font-size: 13.5px; }

.grid { display: grid; gap: 18px; }
.g2 { grid-template-columns: 1fr 1fr; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g-21 { grid-template-columns: 1.85fr 1fr; }
.g-12 { grid-template-columns: 1fr 1.85fr; }
@media (max-width: 1180px) { .g2, .g3, .g4, .g-21, .g-12 { grid-template-columns: 1fr; } }

/* 分区标题 */
.section-label {
  display: flex; align-items: center; gap: 11px;
  margin: 34px 0 15px;
}
.section-label .ico-chip { width: 30px; height: 30px; border-radius: 9px; }
.section-label .ico-chip svg { width: 15px; height: 15px; }
.section-label .cn {
  font-size: 16.5px; font-weight: 800; letter-spacing: -.45px; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.section-label .en {
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.6px;
  color: var(--text-3); text-transform: uppercase;
  padding: 2px 9px; border: 1px solid var(--line); border-radius: 20px;
  background: rgba(255,255,255,.6);
}
.section-label::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(13,27,47,.16), rgba(13,27,47,.03));
}
.section-label .act { margin-left: 4px; flex-shrink: 0; }

.card {
  background: var(--card);
  border: 1px solid rgba(13,27,47,.09);
  border-radius: 16px; padding: 21px 23px;
  box-shadow: var(--shadow-sm);
}
.card.raise { box-shadow: var(--shadow); }
/* 带色卡片 —— 用来区分性质，避免满屏白 */
.card.tint-cyan  { background: linear-gradient(160deg, var(--cyan-tint),  #fff 62%); border-color: #c5e6f2; }
.card.tint-blue  { background: linear-gradient(160deg, var(--blue-tint),  #fff 62%); border-color: #c9dffc; }
.card.tint-green { background: linear-gradient(160deg, var(--green-tint), #fff 62%); border-color: #c6ebd8; }
.card.tint-amber { background: linear-gradient(160deg, var(--amber-tint), #fff 62%); border-color: #fad4bd; }
.card.tint-red   { background: linear-gradient(160deg, var(--red-tint),   #fff 62%); border-color: #f5c9c9; }

.card-head {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; margin-bottom: 15px;
  letter-spacing: -.3px;
}
.card-head .more {
  margin-left: auto; font-size: 12.5px; color: var(--brand);
  font-weight: 600; cursor: pointer;
}
.card-head .more:hover { text-decoration: underline; }
.card-note {
  font-size: 13px; color: var(--text-2); line-height: 1.8;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-2);
}
.card-note b { color: var(--text); font-weight: 700; }

/* 图标块 */
.ico-chip {
  width: 36px; height: 36px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
}
.ico-chip svg { width: 18px; height: 18px; }
.ic-cyan   { background: var(--cyan-bg);   color: var(--cyan); }
.ic-blue   { background: var(--blue-bg);   color: var(--blue); }
.ic-green  { background: var(--green-bg);  color: var(--green); }
.ic-amber  { background: var(--amber-bg);  color: var(--amber); }
.ic-red    { background: var(--red-bg);    color: var(--red); }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(142deg, #0b2a52 0%, #13457f 46%, #0a2140 100%);
  border-radius: 20px; padding: 27px 29px; color: #fff;
  box-shadow: 0 28px 56px -26px rgba(9,38,74,.9);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(580px 290px at 90% -28%, rgba(52,178,255,.7), transparent 66%),
    radial-gradient(470px 250px at 4% 118%, rgba(34,184,230,.42), transparent 64%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(520px 300px at 82% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(520px 300px at 82% 0%, #000, transparent 72%);
}
.hero > * { position: relative; z-index: 1; }
.hero-label {
  font-size: 10.5px; letter-spacing: 1.6px; font-weight: 700;
  color: rgba(255,255,255,.62); text-transform: uppercase;
}
.hero-title { font-size: 29px; font-weight: 800; letter-spacing: -1px; line-height: 1.22; margin-top: 6px; }
.hero-sub { color: rgba(255,255,255,.72); font-size: 13.5px; margin-top: 5px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.24);
  padding: 5px 14px; border-radius: 20px; font-size: 12.5px; font-weight: 600;
  color: #fff; backdrop-filter: blur(6px);
}
.hero-divider { height: 1px; background: rgba(255,255,255,.15); margin: 22px 0; }

.metrics { display: flex; gap: 42px; flex-wrap: wrap; }
.metric .n {
  font-size: 32px; font-weight: 800; letter-spacing: -1.4px; line-height: 1.1;
  display: flex; align-items: baseline; gap: 5px; color: #fff;
}
.metric .n s { text-decoration: none; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); }
.metric .l { font-size: 12.5px; color: rgba(255,255,255,.68); margin-top: 4px; }
.metric.hot .n { color: #ffd166; }
.metric.dim .n { color: rgba(255,255,255,.5); }

/* 信号步进条 */
.stepper { display: flex; margin-top: 6px; }
.stp { flex: 1; position: relative; padding-top: 21px; min-width: 0; }
.stp::before {
  content: ""; position: absolute; top: 5.5px; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,.18);
}
.stp:first-child::before { left: 50%; border-radius: 3px 0 0 3px; }
.stp:last-child::before  { right: 50%; border-radius: 0 3px 3px 0; }
.stp.done::before { background: linear-gradient(90deg, #35d9a0, #35d9a0); }
.stp .d {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: #24466f; border: 2px solid #4a6d99;
}
.stp.done .d { background: #35d9a0; border-color: #35d9a0; }
.stp.cur .d {
  background: #fff; border-color: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.22);
}
.stp .t { font-size: 12px; color: rgba(255,255,255,.6); text-align: center; padding: 0 4px; line-height: 1.5; }
.stp.done .t { color: rgba(255,255,255,.8); }
.stp.cur .t { color: #fff; font-weight: 700; }

.stepper.light .stp::before { background: #cfdbe8; }
.stepper.light .stp.done::before { background: #06984f; }
.stepper.light .stp .d { background: #fff; border-color: #bdcbdd; }
.stepper.light .stp.done .d { background: var(--green); border-color: var(--green); }
.stepper.light .stp.cur .d { background: var(--brand); border-color: var(--brand); box-shadow: 0 0 0 6px rgba(32,128,247,.22); }
.stepper.light .stp .t { color: var(--text-3); }
.stepper.light .stp.done .t { color: var(--text-2); }
.stepper.light .stp.cur .t { color: var(--text); font-weight: 700; }

/* ---------- 统计小卡 ---------- */
.stat {
  border-radius: 15px; padding: 17px 18px;
  display: flex; align-items: flex-start; gap: 13px;
  box-shadow: var(--shadow-sm); border: 1px solid transparent;
}
.stat.s-cyan  { background: linear-gradient(155deg, #ddf2fa, #fff 72%); border-color: #c5e6f2; }
.stat.s-blue  { background: linear-gradient(155deg, #dfedff, #fff 72%); border-color: #c9dffc; }
.stat.s-green { background: linear-gradient(155deg, #ddf5e9, #fff 72%); border-color: #c6ebd8; }
.stat.s-amber { background: linear-gradient(155deg, #ffe8da, #fff 72%); border-color: #fad4bd; }
.stat .n { font-size: 25px; font-weight: 800; letter-spacing: -1px; line-height: 1.2; }
.stat .l { font-size: 13px; color: var(--text-2); font-weight: 500; }
.stat .up {
  font-size: 11px; color: #fff; font-weight: 700; background: var(--green);
  padding: 0 6px; border-radius: 5px; margin-left: 4px;
}

/* ---------- 警报 ---------- */
.alert {
  background: linear-gradient(105deg, #fff0e6 0%, #fff 48%);
  border: 1px solid #fac9ac;
  border-left: 4px solid #ff6923;
  border-radius: 16px; padding: 16px 21px; margin-bottom: 20px;
  display: flex; gap: 15px; align-items: center;
  box-shadow: var(--shadow-sm);
}
.alert .ico-chip { background: #ffdcc8; color: #b04510; }
.alert-t { font-weight: 800; font-size: 14.5px; letter-spacing: -.3px; }
.alert-b { font-size: 13.5px; color: var(--text-2); margin-top: 2px; }
.alert-b b { color: var(--text); }

/* ---------- 元件 ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; padding: 2.5px 9px;
  border-radius: 7px; font-weight: 700; white-space: nowrap;
  background: #e5ecf5; color: var(--text-2); line-height: 1.6;
}
.tag .d { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.t-green { background: var(--green-bg); color: var(--green); }
.t-amber { background: var(--amber-bg); color: var(--amber); }
.t-red   { background: var(--red-bg);   color: var(--red); }
.t-blue  { background: var(--blue-bg);  color: var(--blue); }
.t-cyan  { background: var(--cyan-bg);  color: var(--cyan); }
.t-gray  { background: #e5ecf5;         color: var(--text-2); }
.t-brand { background: var(--brand-light); color: var(--brand); }
.t-dark  { background: var(--ink); color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 120%);
  color: #fff; border: none;
  padding: 9px 18px; border-radius: 11px; font-size: 13.5px;
  cursor: pointer; font-family: inherit; font-weight: 700; letter-spacing: -.1px;
  box-shadow: 0 8px 20px -8px var(--glow);
}
.btn:hover { filter: brightness(1.08); }
.btn.dark { background: var(--ink); box-shadow: 0 8px 20px -8px rgba(13,27,47,.85); }
.btn.ghost {
  background: #fff; color: var(--text); border: 1px solid var(--line);
  font-weight: 600; box-shadow: var(--shadow-sm);
}
.btn.ghost:hover { background: var(--muted); filter: none; border-color: #b6c7dc; }
.btn.sm { padding: 6.5px 14px; font-size: 12.5px; border-radius: 9px; }
.btn.block { width: 100%; }
.btn:disabled { background: #d3dce7; color: #8794a6; cursor: not-allowed; box-shadow: none; }

.bar { height: 8px; background: #d8e2ee; border-radius: 5px; overflow: hidden; }
.bar > i {
  display: block; height: 100%; border-radius: 5px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}
.bar.green > i { background: linear-gradient(90deg, #067a41, #2fbe86); }

.kv { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; font-size: 13.5px; }
.kv + .kv { border-top: 1px solid var(--line-2); }
.kv .k { color: var(--text-2); white-space: nowrap; }
.kv .v { font-weight: 700; text-align: right; }

.list-row { display: flex; align-items: center; gap: 11px; padding: 11px 0; font-size: 13.5px; }
.list-row + .list-row { border-top: 1px solid var(--line-2); }
.list-row .meta { margin-left: auto; color: var(--text-3); font-size: 12.5px; white-space: nowrap; }

table.tb { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.tb th {
  text-align: left; font-weight: 700; color: var(--text-3);
  font-size: 11.5px; padding: 0 11px 10px; border-bottom: 1px solid var(--line);
  letter-spacing: .6px; text-transform: uppercase;
}
table.tb td { padding: 12px 11px; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
table.tb tr:last-child td { border-bottom: none; }
table.tb tbody tr:hover td { background: #f4f8fd; }

/* ---------- 成长地图 ---------- */
.track-tabs { display: flex; gap: 12px; margin-bottom: 22px; }
.track-tab {
  padding: 13px 21px; border: 1px solid var(--line); background: #fff;
  border-radius: 14px; cursor: pointer; font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow-sm); letter-spacing: -.2px;
}
.track-tab:hover { border-color: #b6c7dc; }
.track-tab.active {
  border-color: transparent; color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 28px -12px var(--glow);
}
.track-tab small { display: block; font-size: 12px; color: var(--text-3); font-weight: 500; margin-top: 1px; }
.track-tab.active small { color: rgba(255,255,255,.82); }

.stages { display: flex; gap: 12px; overflow-x: auto; padding: 3px 3px 10px; }
.stage {
  flex: 1; min-width: 178px; background: #fff;
  border: 1px solid rgba(13,27,47,.09); border-radius: 15px; padding: 16px 17px;
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.stage:hover { border-color: #b6c7dc; }
.stage.done { background: linear-gradient(168deg, #e9f8f0, #fff 62%); border-color: #c6ebd8; }
.stage.cur {
  border-color: transparent; color: #fff;
  background: linear-gradient(150deg, #0b2a52, #13457f 70%, #0a2140);
  box-shadow: 0 18px 34px -16px rgba(9,38,74,.9);
}
.stage.cur .stage-no { color: rgba(255,255,255,.6); }
.stage.cur .stage-cri { color: rgba(255,255,255,.72); }
.stage.lock { opacity: .5; }
.stage-no { font-size: 10.5px; color: var(--text-3); letter-spacing: 1.1px; font-weight: 800; text-transform: uppercase; }
.stage-nm { font-weight: 800; font-size: 16px; margin: 4px 0 10px; letter-spacing: -.4px; }
.stage-cri { font-size: 12.5px; color: var(--text-2); margin-top: 11px; line-height: 1.7; }
.stage-num {
  width: 34px; height: 34px; border-radius: 11px; margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; letter-spacing: -.5px;
  background: var(--blue-bg); color: var(--blue);
}
.stage.done .stage-num { background: var(--green); color: #fff; }
.stage.cur .stage-num {
  background: rgba(255,255,255,.2); color: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.14);
}
.stage.lock .stage-num { background: #e2e8f1; color: #8794a6; }
.stage.cur .stage-nm { color: #fff; }
.stage.cur .stage-no { color: rgba(255,255,255,.62); }

/* 阶段带（人工覆盖区 / 系统供给区） */
.zone-bar { display: flex; gap: 10px; margin-top: 16px; }
.zone {
  flex: 1; padding: 11px 15px; border-radius: 12px; font-size: 12.5px;
  line-height: 1.6; border: 1px dashed;
}
.zone b { display: block; font-size: 13px; margin-bottom: 1px; }
.zone.z1 { background: var(--blue-tint); border-color: #b6d3fa; color: #14456f; }
.zone.z2 { background: var(--green-tint); border-color: #b7e6cd; color: #17503a; }

/* 纵向信号阶梯 */
.ladder { position: relative; padding-left: 4px; }
.lad {
  position: relative; padding: 0 0 18px 30px; min-height: 30px;
}
.lad:last-child { padding-bottom: 0; }
.lad::before {
  content: ""; position: absolute; left: 8px; top: 17px; bottom: -1px;
  width: 2px; background: #d3dfec;
}
.lad:last-child::before { display: none; }
.lad::after {
  content: ""; position: absolute; left: 2px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 2px solid #c3d1e2;
}
.lad.done::before { background: var(--green); }
.lad.done::after { background: var(--green); border-color: var(--green); }
.lad.cur::after {
  background: var(--brand); border-color: var(--brand);
  box-shadow: 0 0 0 5px rgba(32,128,247,.2);
}
.lad .lt { font-size: 13.5px; font-weight: 600; color: var(--text-2); line-height: 1.5; }
.lad.done .lt { color: var(--text-2); }
.lad.cur .lt { color: var(--text); font-weight: 800; font-size: 14.5px; }
.lad .lh { font-size: 12.5px; color: var(--text-3); margin-top: 2px; line-height: 1.6; }
.lad .lnow {
  display: inline-block; margin-left: 7px; font-size: 11px; font-weight: 800;
  color: #fff; background: var(--brand); padding: 1px 8px; border-radius: 20px;
  vertical-align: 2px; letter-spacing: .3px;
}

/* 小标题（卡片内部的分节） */
.sub-t {
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.1px;
  color: var(--text-3); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.sub-t::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }

.crit { display: flex; gap: 11px; padding: 10px 0; font-size: 13.5px; align-items: flex-start; }
.crit + .crit { border-top: 1px solid var(--line-2); }
.crit .box {
  width: 18px; height: 18px; border-radius: 6px; flex-shrink: 0; margin-top: 3px;
  border: 1.5px solid #bccadb; display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; line-height: 1; font-weight: 800; background: #fff;
}
.crit.ok .box { background: var(--green); border-color: var(--green); }
.crit .how { font-size: 12.5px; color: var(--text-3); margin-top: 1px; line-height: 1.6; }

.pit {
  background: linear-gradient(150deg, #ffe9db, #fff8f4 68%);
  border: 1px solid #f8caae;
  border-left: 4px solid #ff6923;
  border-radius: 15px; padding: 16px 19px; font-size: 13.5px; color: #7a3a13;
  line-height: 1.85;
}
.pit b { color: #56260b; }
.pit .pit-t { font-weight: 800; color: #56260b; display: block; margin-bottom: 4px; font-size: 14px; }

/* ---------- Skill ---------- */
.skill-filter {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  margin-bottom: 6px; padding: 12px 14px;
  background: rgba(255,255,255,.72); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-sm);
  position: sticky; top: 62px; z-index: 20;
  backdrop-filter: saturate(180%) blur(14px);
}
.skill-filter .sep { width: 1px; height: 20px; background: var(--line); margin: 0 4px; }
.skill-filter .lb { font-size: 12px; color: var(--text-3); font-weight: 700; letter-spacing: .5px; }
.chip {
  padding: 7px 15px; border: 1px solid var(--line); background: #fff;
  border-radius: 20px; font-size: 12.5px; cursor: pointer; color: var(--text-2);
  box-shadow: var(--shadow-sm); font-weight: 600;
}
.chip:hover { border-color: #b6c7dc; }
.chip.active {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff; border-color: transparent;
  box-shadow: 0 8px 20px -8px var(--glow);
}

/* ---- 系列配色：每个 section 挂一个 sr-x，内部全部继承 --sc ---- */
.sr { --sc: #2080f7; --sc-2: #22b8e6; --sc-bg: #dcebff; --sc-line: #c2daf8; }
.sr-f { --sc: #0b4a8f; --sc-2: #2080f7; --sc-bg: #dbe8f7; --sc-line: #bcd3ec; }
.sr-p { --sc: #2080f7; --sc-2: #4fa3ff; --sc-bg: #dcebff; --sc-line: #c2daf8; }
.sr-b { --sc: #0b8fa8; --sc-2: #22b8e6; --sc-bg: #d5eff6; --sc-line: #b5dfea; }
.sr-c { --sc: #06984f; --sc-2: #2fc47e; --sc-bg: #d9f4e6; --sc-line: #b7e6cd; }
.sr-t { --sc: #d1541a; --sc-2: #ff8a4d; --sc-bg: #ffe4d5; --sc-line: #f8c8ab; }
.sr-m { --sc: #92701c; --sc-2: #c9a13a; --sc-bg: #f7edcf; --sc-line: #e5d09a; }

/* ---- 分区大标题 ---- */
.sec-head {
  display: flex; align-items: center; gap: 16px;
  margin: 38px 0 16px; padding: 16px 21px;
  background: linear-gradient(100deg, var(--sc-bg) 0%, #fff 60%);
  border: 1px solid var(--sc-line); border-radius: 16px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.sec-head::after {
  content: attr(data-ghost); position: absolute; right: 22px; bottom: -30px;
  font-size: 108px; font-weight: 800; line-height: 1;
  color: var(--sc); opacity: .07; letter-spacing: -6px; pointer-events: none;
}
.sh-badge {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--sc), var(--sc-2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 21px; font-weight: 800; letter-spacing: -1px;
  box-shadow: 0 8px 20px -7px var(--sc);
}
.sh-txt { min-width: 0; flex: 1; position: relative; z-index: 1; }
.sh-t {
  font-size: 17.5px; font-weight: 800; letter-spacing: -.5px;
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap; line-height: 1.4;
}
.sh-n {
  font-size: 11.5px; font-weight: 800; color: #fff; background: var(--sc);
  padding: 1px 9px; border-radius: 20px; letter-spacing: 0;
}
.sh-d { font-size: 13px; color: var(--text-2); margin-top: 2px; line-height: 1.65; }
.sh-stage {
  margin-left: auto; flex-shrink: 0; position: relative; z-index: 1;
  font-size: 12px; font-weight: 700; color: var(--sc);
  background: #fff; border: 1px solid var(--sc-line);
  padding: 5px 13px; border-radius: 20px; white-space: nowrap;
}

/* ---- Skill 卡片 ---- */
.skill-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(292px, 1fr)); gap: 14px; }
.skill-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid rgba(13,27,47,.09); border-radius: 15px;
  padding: 16px 18px 15px; cursor: pointer; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .14s, box-shadow .14s, border-color .14s;
}
.skill-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sc), var(--sc-2));
  opacity: 0; transition: opacity .14s;
}
.skill-card:hover { transform: translateY(-3px); border-color: var(--sc-line); box-shadow: var(--shadow); }
.skill-card:hover::before { opacity: 1; }

.sk-top { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.skill-card .id {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 23px; padding: 0 8px; border-radius: 7px;
  background: var(--sc-bg); color: var(--sc);
  font-size: 12px; font-weight: 800; letter-spacing: .4px;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
}
.skill-card .ver { margin-left: auto; font-size: 11.5px; color: var(--text-3); font-weight: 600; }
.skill-card .nm { font-weight: 800; font-size: 15.5px; margin: 0 0 7px; letter-spacing: -.4px; line-height: 1.4; }
.skill-card .ds { font-size: 12.8px; color: var(--text-2); line-height: 1.75; flex: 1; }
.skill-card .ft {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--line-2);
}
.skill-card.star {
  background: linear-gradient(160deg, var(--sc-bg), #fff 58%);
  border-color: var(--sc-line);
}
.skill-card.star::before { opacity: 1; }

/* 兼容旧标题（其他页面还在用） */
.sec-title {
  font-size: 17px; font-weight: 800; margin: 34px 0 15px;
  letter-spacing: -.5px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.sec-title::before {
  content: ""; width: 4px; height: 18px; border-radius: 3px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2)); flex-shrink: 0;
}
.sec-title span { font-weight: 500; color: var(--text-2); font-size: 13px; letter-spacing: 0; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.field .hint { font-size: 12.5px; color: var(--text-3); font-weight: 400; margin-bottom: 7px; }
.field input[type=text], .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 11px 14px; font-size: 13.5px; font-family: inherit; background: #fff;
  color: var(--text); resize: vertical; line-height: 1.75;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(32,128,247,.2);
}
.injected {
  background: linear-gradient(150deg, #e3efff, #f7fbff 72%);
  border: 1px solid #c9dffc;
  border-radius: 13px; padding: 14px 16px; font-size: 13px;
  color: #10375f; line-height: 1.9;
}
.injected b.h { display: block; color: var(--brand); margin-bottom: 5px; font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; font-weight: 800; }

.score-big { font-size: 50px; font-weight: 800; line-height: 1; letter-spacing: -2.8px; }

/* skill 运行页头 */
.run-head {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; margin-bottom: 18px; border-radius: 18px;
  background: linear-gradient(105deg, var(--sc-bg) 0%, #fff 62%);
  border: 1px solid var(--sc-line); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.run-head::after {
  content: attr(data-ghost); position: absolute; right: 26px; bottom: -34px;
  font-size: 122px; font-weight: 800; line-height: 1;
  color: var(--sc); opacity: .07; letter-spacing: -7px; pointer-events: none;
}
.run-badge {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--sc), var(--sc-2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; letter-spacing: -1px;
  box-shadow: 0 10px 24px -8px var(--sc);
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
}
.run-head .rh { min-width: 0; flex: 1; position: relative; z-index: 1; }
.run-head .rt { font-size: 22px; font-weight: 800; letter-spacing: -.7px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.run-head .rd { font-size: 13.5px; color: var(--text-2); margin-top: 3px; }
.run-head .ra { margin-left: auto; position: relative; z-index: 1; flex-shrink: 0; }

/* 流程条 */
.flow { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; font-size: 13px; }
.flow .fs {
  padding: 6px 13px; border-radius: 9px; background: var(--muted);
  color: var(--text-2); font-weight: 600; border: 1px solid var(--line-2);
}
.flow .fs.done { background: var(--green-bg); color: var(--green); border-color: #c6ebd8; }
.flow .fs.cur {
  background: linear-gradient(120deg, var(--sc), var(--sc-2)); color: #fff;
  border-color: transparent; box-shadow: 0 7px 16px -6px var(--sc);
}
.flow .fa { color: var(--text-3); font-size: 11px; }

/* 结果分数条 */
.verdict {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  padding: 20px 24px; border-radius: 16px;
  background: linear-gradient(105deg, var(--red-bg) 0%, #fff 58%);
  border: 1px solid #f5c9c9;
}
.verdict.ok { background: linear-gradient(105deg, var(--green-bg) 0%, #fff 58%); border-color: #c6ebd8; }
.v-axes { flex: 1; min-width: 240px; }
.axis { margin-bottom: 14px; }
.axis:last-child { margin-bottom: 0; }
.axis-t { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; color: var(--text-2); }
.axis-t b { color: var(--text); font-weight: 800; }

.mark { background: #fcdcdc; box-shadow: inset 0 -2px 0 #e59595; padding: 1px 2px; cursor: help; border-radius: 3px; }
.mark.y { background: #ffe3d0; box-shadow: inset 0 -2px 0 #e8a878; }

.feedback {
  display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 15px; padding: 14px 17px; margin-top: 18px; font-size: 13.5px;
  box-shadow: var(--shadow-sm); font-weight: 500;
}
.fb-btn {
  border: 1px solid var(--line); background: #fff; border-radius: 10px;
  padding: 6px 14px; cursor: pointer; font-size: 16px; font-family: inherit;
}
.fb-btn:hover { border-color: var(--brand); background: var(--brand-light); }
.feedback input {
  flex: 1; border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 13px; font-size: 13px; font-family: inherit;
}
.feedback input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(32,128,247,.2); }

/* ---------- 原型批注 ---------- */
.note {
  background: linear-gradient(150deg, #e6f1ff, #fff 68%);
  border: 1px solid #c9dffc; border-left: 4px solid var(--brand);
  border-radius: 13px; padding: 14px 18px; font-size: 13px;
  color: var(--text-2); margin-bottom: 20px; line-height: 1.85;
  box-shadow: var(--shadow-sm);
}
.note b { color: var(--text); }
/* 系列内的说明块跟随系列色 */
.sr .note {
  background: linear-gradient(150deg, var(--sc-bg), #fff 68%);
  border-color: var(--sc-line); border-left-color: var(--sc);
}

.empty { text-align: center; padding: 36px 20px; color: var(--text-3); font-size: 13.5px; }

/* ============================================================
   反馈收件箱
   ============================================================ */
/* 泳道：球在谁手上 */
.lanes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.lane {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 15px 17px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer; transition: border-color .14s, transform .14s;
}
.lane:hover { transform: translateY(-1px); }
.lane::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--line);
}
.lane .n { font-size: 27px; font-weight: 800; letter-spacing: -1.4px; line-height: 1.1; }
.lane .l { font-size: 13px; font-weight: 700; color: var(--text); margin-top: 3px; }
.lane .s { font-size: 12px; color: var(--text-3); margin-top: 4px; line-height: 1.6; }
.lane.mine       { border-color: #f5c6a4; background: linear-gradient(150deg, var(--amber-tint), #fff 62%); }
.lane.mine::before { background: var(--amber); }
.lane.mine .n    { color: var(--amber); }
.lane.theirs::before { background: var(--blue); }
.lane.theirs .n  { color: var(--blue); }
.lane.done::before   { background: var(--green); }
.lane.done .n    { color: var(--green); }

/* 一次批改 */
.rv { border: 1px solid var(--line); border-radius: 15px; background: var(--card);
      box-shadow: var(--shadow-sm); margin-bottom: 14px; overflow: hidden; }
.rv-h { display: flex; align-items: center; gap: 11px; flex-wrap: wrap;
        padding: 14px 18px; border-bottom: 1px solid var(--line-2); background: var(--muted); }
.rv-t { font-size: 14.5px; font-weight: 700; letter-spacing: -.2px; }
.rv-m { font-size: 12.5px; color: var(--text-3); }
.who { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px;
       color: var(--text-2); font-weight: 600; }
.who i { width: 21px; height: 21px; border-radius: 50%; font-style: normal;
         background: linear-gradient(140deg, var(--brand), var(--brand-2)); color: #fff;
         font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.rv-b { padding: 4px 18px 16px; }

/* 一条意见 */
.pt { border-left: 3px solid var(--line); padding: 14px 0 14px 15px; margin-top: 14px; }
.pt.stop  { border-left-color: var(--red); }
.pt.order { border-left-color: var(--amber); }
.pt.fork  { border-left-color: var(--blue); }
/* 「我看到的」—— 客观事实 */
.pt-f {
  margin: 9px 0; padding: 9px 14px; border-radius: 9px;
  background: var(--muted); border: 1px solid var(--line-2); border-left: 3px solid #b8c6d8;
  font-size: 12.8px; color: var(--text-2); line-height: 1.78;
}
/* 「为什么机器给不了这个判断」—— 每条意见强制带 */
.pt-m {
  margin: 11px 0 0; padding: 10px 14px; border-radius: 10px;
  background: linear-gradient(140deg, var(--green-tint), #fff 72%);
  border: 1px solid #bfe6d2; border-left: 3px solid var(--green);
  font-size: 12.8px; color: #1c5638; line-height: 1.78;
}
.pt-m b { color: #0d3d26; }
.pt-f em, .pt-m em {
  font-style: normal; display: block; margin-bottom: 3px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .3px;
}
.pt-f em { color: var(--text-3); }
.pt-m em { color: var(--green); }
.pt-h { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-bottom: 7px; }
.pt-t { font-size: 13.8px; font-weight: 700; color: var(--text); }
.pt-w { font-size: 13px; color: var(--text-2); line-height: 1.85; }
.pt-w b { color: var(--text); }
.pt-q {
  margin: 9px 0; padding: 9px 14px; border-radius: 9px;
  background: var(--muted); border: 1px solid var(--line-2); border-left: 3px solid #b8c6d8;
  font-size: 12.8px; color: var(--text-2); line-height: 1.75;
}
.pt-q em { font-style: normal; color: var(--text-3); font-size: 11.5px;
           display: block; margin-bottom: 3px; letter-spacing: .3px; }
.pt-act { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 11px; }
.pt-act .st { font-size: 12.5px; color: var(--text-3); }
.pt.settled { opacity: .72; }

/* 队列位置：给客观事实，不给时间承诺 */
.queue { display: flex; align-items: center; gap: 12px; padding: 13px 16px;
         background: var(--blue-tint); border: 1px solid #cfe2fb; border-radius: 12px;
         font-size: 13px; color: var(--text-2); margin-top: 13px; }
.queue b { color: var(--blue); font-size: 17px; font-weight: 800; }

/* ============================================================
   术语：行内标记 + 悬浮卡
   ============================================================ */
.term {
  border-bottom: 1px dashed #9db8d6;
  cursor: help; padding-bottom: .5px;
  transition: background .12s, border-color .12s;
}
.term:hover { background: var(--blue-bg); border-bottom-color: var(--brand); border-bottom-style: solid; }
.hero .term, .stage.cur .term { border-bottom-color: rgba(255,255,255,.55); }
.hero .term:hover, .stage.cur .term:hover { background: rgba(255,255,255,.16); border-bottom-color: #fff; }

.term-pop {
  position: fixed; z-index: 200; width: 330px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 16px 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity .13s, transform .13s, visibility .13s;
  pointer-events: none;
}
.term-pop.on { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
/* 透明桥：盖住卡片与词之间那 10px，鼠标穿过时不会掉进"两边都不在"的死区 */
.term-pop::after {
  content: ""; position: absolute; left: 0; right: 0;
  top: 100%; height: 12px;
}
.term-pop.below::after { top: auto; bottom: 100%; }
/* 点击钉住：加一道主色边，告诉你现在它不会自己消失 */
.term-pop.pinned { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(32,128,247,.14), var(--shadow-lg); }
.term-pop.pinned .tp-a::after { content: " · 点空白处关闭"; color: var(--text-3); font-weight: 500; }
.tp-h { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.tp-h b { font-size: 15px; font-weight: 800; letter-spacing: -.3px; }
.tp-c {
  font-size: 11px; font-weight: 700; color: var(--blue);
  background: var(--blue-bg); padding: 1px 8px; border-radius: 20px;
}
.tp-lv {
  font-size: 11px; font-weight: 700; color: var(--text-3);
  border: 1px solid var(--line); padding: 0 7px; border-radius: 20px; margin-left: auto;
}
.tp-s { font-size: 13px; color: var(--text-2); line-height: 1.72; }
.tp-a {
  display: block; margin-top: 10px; padding-top: 9px;
  border-top: 1px solid var(--line-2);
  font-size: 12.5px; color: var(--brand); font-weight: 600;
}
.tp-a:hover { text-decoration: underline; }

/* ---- 术语库页 ---- */
.term-idx {
  display: flex; gap: 7px; flex-wrap: wrap; align-items: center;
  padding: 12px 14px; margin-bottom: 18px;
  background: rgba(255,255,255,.72); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-sm);
  position: sticky; top: 62px; z-index: 20;
  backdrop-filter: saturate(180%) blur(14px);
}

.term-item {
  scroll-margin-top: 140px;
  background: #fff; border: 1px solid rgba(13,27,47,.09);
  border-radius: 16px; padding: 20px 22px; margin-bottom: 13px;
  box-shadow: var(--shadow-sm);
}
.term-item:target { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(32,128,247,.16), var(--shadow); }
.ti-h { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.ti-n { font-size: 19px; font-weight: 800; letter-spacing: -.5px; }
.ti-a { font-size: 12.5px; color: var(--text-3); }
.ti-s { font-size: 14.5px; color: var(--text); font-weight: 600; line-height: 1.7; margin-bottom: 14px; }
.ti-blk { margin-top: 13px; }
.ti-lb {
  font-size: 11px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--text-3); display: flex; align-items: center; gap: 8px; margin-bottom: 5px;
}
.ti-lb::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }
.ti-d { font-size: 13.5px; color: var(--text-2); line-height: 1.85; }

/* 我的立场 —— 这块是这套系统独有的东西，视觉上必须跳出来 */
.ti-v {
  background: linear-gradient(150deg, var(--amber-tint), #fff 66%);
  border: 1px solid #f8cfb4; border-left: 4px solid #ff6923;
  border-radius: 13px; padding: 14px 17px; margin-top: 13px;
  font-size: 13.5px; color: #6d3512; line-height: 1.85;
}
.ti-v b { color: #4a1f06; font-weight: 800; }
.ti-v .ti-lb { color: #b0562a; margin-bottom: 6px; }
.ti-v .ti-lb::after { background: rgba(176,86,42,.22); }

.ti-rel { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line-2); font-size: 12.5px; color: var(--text-3); }

/* ===== 成长地图 · 十二步流程 ===== */
.flow { position: relative; }
.fs { position: relative; display: flex; gap: 15px; padding-bottom: 12px; }
.fs-rail { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 36px; }
.fs-n {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13.5px; font-weight: 800; font-family: ui-monospace, monospace;
  background: #e3ebf5; color: var(--text-3); border: 2px solid #d3dfee;
}
.fs-rail::after { content: ""; flex: 1; width: 2px; background: var(--line); margin-top: 4px; }
.fs:last-child .fs-rail::after { display: none; }
.fs.done .fs-n { background: var(--green-bg); color: var(--green); border-color: #b7e6cd; }
.fs.done .fs-rail::after { background: #b7e6cd; }
.fs.run .fs-n { background: var(--amber-bg); color: var(--amber); border-color: #f5c6a4; }
.fs.cur .fs-n {
  background: linear-gradient(140deg, var(--brand), var(--brand-2)); color: #fff; border-color: transparent;
  box-shadow: 0 0 0 4px rgba(32,128,247,.16);
}
.fs-card {
  flex: 1; min-width: 0; background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-sm); margin-bottom: 2px;
}
.fs.lock .fs-card { background: transparent; box-shadow: none; border-style: dashed; }
.fs.lock .fs-card .fs-t { color: var(--text-2); }
.fs.cur .fs-card { border-color: #b9d5f8; box-shadow: 0 0 0 3px rgba(32,128,247,.09), var(--shadow); }
.fs-h { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fs-t { font-size: 15px; font-weight: 800; letter-spacing: -.3px; }
.fs-acts { font-size: 12.8px; color: var(--text-2); line-height: 1.8; margin-top: 6px; }
.fs-sig {
  display: flex; align-items: flex-start; gap: 7px; margin-top: 9px; padding-top: 9px;
  border-top: 1px dashed var(--line-2); font-size: 12.5px; color: var(--text-2); line-height: 1.7;
}
.fs-sig .lb {
  flex-shrink: 0; font-size: 11px; font-weight: 800; letter-spacing: .5px; color: var(--green);
  background: var(--green-bg); border-radius: 6px; padding: 2px 7px; margin-top: 1px;
}
.fs.lock .fs-sig .lb { color: var(--text-3); background: #e8edf4; }
.fs-links { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 10px; }
.fs-links a {
  font-size: 12px; font-weight: 600; color: var(--brand); background: var(--brand-light);
  border-radius: 7px; padding: 3.5px 10px; cursor: pointer;
}
.fs-links a.gray { color: var(--text-2); background: #e8edf4; }
.fork-card {
  margin-top: 11px; padding: 11px 15px; border-radius: 11px;
  background: linear-gradient(140deg, var(--red-bg), #fff 70%);
  border: 1px solid #f3c2bd; border-left: 3px solid var(--red);
  font-size: 12.8px; color: var(--text-2); line-height: 1.8;
}
.fork-card b { color: #8f1d14; }
.fork-card .ft { display: block; font-size: 13px; font-weight: 800; color: #8f1d14; margin-bottom: 3px; }
.thru { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== 机会 & 选题 ===== */
.opp {
  border: 1px solid var(--line); border-radius: 15px; background: var(--card);
  box-shadow: var(--shadow-sm); padding: 17px 20px; margin-bottom: 14px;
}
.opp.expired { opacity: .62; }
.opp-h { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.opp-t { font-size: 15.5px; font-weight: 800; letter-spacing: -.3px; }
.opp-m { margin-left: auto; font-size: 12px; color: var(--text-3); white-space: nowrap; }
.opp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.opp-col {
  border-radius: 11px; padding: 11px 14px; font-size: 12.8px; line-height: 1.8; color: var(--text-2);
}
.opp-col em { font-style: normal; display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .4px; margin-bottom: 3px; }
.opp-col.up { background: linear-gradient(140deg, var(--green-tint), #fff 75%); border: 1px solid #bfe6d2; }
.opp-col.up em { color: var(--green); }
.opp-col.dn { background: linear-gradient(140deg, var(--amber-tint), #fff 75%); border: 1px solid #f0d1b2; }
.opp-col.dn em { color: var(--amber); }
.opp-fit {
  margin-top: 10px; padding: 9px 14px; border-radius: 10px; background: var(--muted);
  border: 1px solid var(--line-2); font-size: 12.8px; color: var(--text-2); line-height: 1.75;
}
.opp-fit b { color: var(--text); }
.tp-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; font-size: 13.5px; }
.tp-row + .tp-row { border-top: 1px solid var(--line-2); }
.tp-row .kw { font-weight: 700; min-width: 0; }
.tp-row .meta2 { margin-left: auto; display: flex; gap: 7px; align-items: center; flex-shrink: 0; }
.st-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.cluster-head {
  display: flex; align-items: center; gap: 9px; margin: 18px 0 4px; font-size: 13px; font-weight: 800;
}
.cluster-head:first-child { margin-top: 0; }
.cluster-head .cnt { font-size: 12px; color: var(--text-3); font-weight: 600; }

/* ===== 课程库 ===== */
.co {
  display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--line);
  border-radius: 14px; background: var(--card); box-shadow: var(--shadow-sm);
  padding: 15px 18px; margin-bottom: 12px;
}
.co.lock2 { background: transparent; box-shadow: none; border-style: dashed; }
.co-n {
  width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; font-family: ui-monospace, monospace;
  background: var(--brand-light); color: var(--brand);
}
.co.done2 .co-n { background: var(--green-bg); color: var(--green); }
.co.lock2 .co-n { background: #e8edf4; color: var(--text-3); }
.co-b { flex: 1; min-width: 0; }
.co-t { font-size: 14.5px; font-weight: 800; letter-spacing: -.2px; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.co-d { font-size: 12.8px; color: var(--text-2); line-height: 1.75; margin-top: 4px; }
.co-ls { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 9px; }
.co-ls span {
  font-size: 12px; color: var(--text-2); background: var(--muted);
  border: 1px solid var(--line-2); border-radius: 7px; padding: 3px 10px;
}
.co-ls span.seen { color: var(--green); background: var(--green-bg); border-color: #bfe6d2; }

/* ===== 情报 ===== */
.intel-item {
  display: flex; gap: 13px; align-items: flex-start; padding: 14px 2px;
  border-bottom: 1px solid var(--line-2);
}
.intel-item:last-child { border-bottom: none; }
.iv-t { font-size: 14px; font-weight: 700; letter-spacing: -.2px; line-height: 1.5; }
.iv-d { font-size: 12.8px; color: var(--text-2); line-height: 1.75; margin-top: 3px; }
.iv-m { font-size: 12px; color: var(--text-3); margin-top: 5px; }

/* ===== 我的档案 ===== */
.doc {
  border: 1px solid var(--line); border-radius: 13px; background: var(--card);
  padding: 14px 17px; box-shadow: var(--shadow-sm);
}
.doc-t { font-size: 13.5px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.doc-d { font-size: 12.5px; color: var(--text-2); line-height: 1.7; margin-top: 5px; }
.doc-m { font-size: 11.5px; color: var(--text-3); margin-top: 8px; }

/* ===== 授权中心 ===== */
.auth-row {
  display: flex; align-items: center; gap: 13px; padding: 13px 0; font-size: 13.5px;
}
.auth-row + .auth-row { border-top: 1px solid var(--line-2); }
.auth-ic {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px;
  background: var(--muted); border: 1px solid var(--line-2); color: var(--text-2);
}
.auth-b { min-width: 0; flex: 1; }
.auth-t { font-weight: 700; }
.auth-d { font-size: 12.3px; color: var(--text-3); margin-top: 1px; line-height: 1.6; }

/* ===== 层次强化 v2 ===== */
/* hero 色彩变体 */
.hero.h-green { background: linear-gradient(142deg, #06301f 0%, #0d5c3a 46%, #052517 100%); box-shadow: 0 28px 56px -26px rgba(5,44,26,.9); }
.hero.h-green::before { background: radial-gradient(580px 290px at 90% -28%, rgba(53,217,160,.55), transparent 66%), radial-gradient(470px 250px at 4% 118%, rgba(53,217,160,.28), transparent 64%); }
.hero.h-amber { background: linear-gradient(142deg, #3d1a05 0%, #7a3a10 46%, #2e1304 100%); box-shadow: 0 28px 56px -26px rgba(61,26,5,.9); }
.hero.h-amber::before { background: radial-gradient(580px 290px at 90% -28%, rgba(255,158,87,.5), transparent 66%), radial-gradient(470px 250px at 4% 118%, rgba(255,105,35,.3), transparent 64%); }
.hero.h-cyan { background: linear-gradient(142deg, #06283d 0%, #0b5875 46%, #041e2e 100%); box-shadow: 0 28px 56px -26px rgba(6,40,61,.9); }
.hero.h-cyan::before { background: radial-gradient(580px 290px at 90% -28%, rgba(52,205,255,.55), transparent 66%), radial-gradient(470px 250px at 4% 118%, rgba(34,184,230,.32), transparent 64%); }
.hero .hero-ghost {
  position: absolute; right: 18px; bottom: -34px; font-size: 150px; font-weight: 800;
  letter-spacing: -8px; color: rgba(255,255,255,.07); line-height: 1; pointer-events: none;
  font-family: ui-monospace, monospace; z-index: 0;
}

/* 步骤卡：幽灵数字 + 状态渐变 */
.fs-card { position: relative; overflow: hidden; }
.fs-card::after {
  content: attr(data-g); position: absolute; right: 8px; top: -22px;
  font-size: 96px; font-weight: 800; font-family: ui-monospace, monospace;
  color: rgba(13,27,47,.045); line-height: 1; pointer-events: none; letter-spacing: -4px;
}
.fs.done .fs-card { background: linear-gradient(140deg, #fff 55%, var(--green-tint)); }
.fs.done .fs-card::after { color: rgba(6,122,65,.07); }
.fs.run .fs-card { background: linear-gradient(140deg, #fff 50%, var(--amber-tint)); }
.fs.run .fs-card::after { color: rgba(176,69,16,.08); }
.fs.cur .fs-card {
  background: linear-gradient(150deg, #f3f8ff 0%, #fff 42%);
  border-color: #9cc4f5;
}
.fs.cur .fs-card::after { color: rgba(32,128,247,.10); }
.fs-card > * { position: relative; z-index: 1; }

/* 机会卡：顶部色带 + 幽灵字母 */
.opp { position: relative; overflow: hidden; padding-top: 20px; }
.opp::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), #2fc47e 55%, transparent);
}
.opp.expired::before { background: linear-gradient(90deg, #c3cdd9, transparent); }
.opp::after {
  content: attr(data-g); position: absolute; right: 10px; top: -18px;
  font-size: 92px; font-weight: 800; color: rgba(6,122,65,.05);
  line-height: 1; pointer-events: none; letter-spacing: -3px;
}
.opp.expired::after { color: rgba(13,27,47,.05); }
.opp > * { position: relative; z-index: 1; }

/* 课程分区里的 co 卡吃 sr 色 */
.sr .co { border-color: var(--sc-line); }
.sr .co .co-n { background: var(--sc-bg); color: var(--sc); }
.sr .co.done2 .co-n { background: var(--green-bg); color: var(--green); }
.sr .co.lock2 .co-n { background: #e8edf4; color: var(--text-3); }

/* 情报条目：左侧色条 */
.intel-item { position: relative; padding-left: 15px; }
.intel-item::before {
  content: ""; position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px; border-radius: 3px;
  background: var(--line);
}
.intel-item.iv-red::before { background: var(--red); }
.intel-item.iv-amber::before { background: var(--amber); }
.intel-item.iv-green::before { background: var(--green); }
.intel-item.iv-gray::before { background: #c3cdd9; }
.intel-item.iv-blue::before { background: var(--brand); }

/* 档案三卡：分色 */
.doc { position: relative; overflow: hidden; }
.doc::after {
  content: attr(data-g); position: absolute; right: 6px; top: -16px;
  font-size: 72px; font-weight: 800; color: rgba(13,27,47,.05);
  line-height: 1; pointer-events: none;
}
.doc.d-blue { background: linear-gradient(150deg, var(--blue-tint), #fff 62%); border-color: #cfe2fb; }
.doc.d-blue::after { color: rgba(18,102,212,.08); }
.doc.d-cyan { background: linear-gradient(150deg, var(--cyan-tint), #fff 62%); border-color: #bfe4f0; }
.doc.d-cyan::after { color: rgba(11,124,158,.08); }
.doc.d-amber { background: linear-gradient(150deg, var(--amber-tint), #fff 62%); border-color: #f0d1b2; }
.doc.d-amber::after { color: rgba(176,69,16,.08); }
.doc > * { position: relative; z-index: 1; }

/* 通用四格统计带 */
.lanes.g4 { grid-template-columns: repeat(4, 1fr); }

/* ===== 术语库 · 词块+点击展开 ===== */
.tw-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.tw {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: 6.5px 13px; font-size: 13px; font-weight: 600; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: border-color .13s, transform .13s, background .13s;
  user-select: none;
}
.tw:hover { border-color: #aecbf2; transform: translateY(-1px); }
.tw .lv2 { font-size: 10.5px; font-weight: 700; color: var(--text-3); }
.tw.on {
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  color: #fff; border-color: transparent;
  box-shadow: 0 6px 16px -6px rgba(32,128,247,.55);
}
.tw.on .lv2 { color: rgba(255,255,255,.75); }
.tw.dim { opacity: .32; }
.term-panel {
  display: none; margin: 12px 0 6px; border: 1px solid #b9d5f8; border-radius: 15px;
  background: linear-gradient(150deg, #f3f8ff, #fff 46%);
  box-shadow: 0 0 0 3px rgba(32,128,247,.07), var(--shadow);
  padding: 18px 21px; position: relative;
}
.term-panel.show { display: block; animation: tp-in .16s ease-out; }
@keyframes tp-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.term-panel .tp-close {
  position: absolute; right: 13px; top: 11px; cursor: pointer;
  font-size: 18px; line-height: 1; color: var(--text-3); font-weight: 400; padding: 4px;
}
.term-panel .tp-close:hover { color: var(--text); }

/* ===== 成长地图 · 结构化排版（全部平铺，不折叠） ===== */
.fs-h {
  padding-bottom: 10px; margin-bottom: 2px;
  border-bottom: 1px dashed var(--line-2);
}
.fs-lb2 {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: .5px; color: var(--text-3); margin-top: 13px;
}
.fs-lb2::before { content: ""; width: 10px; height: 2.5px; border-radius: 2px; background: var(--brand); }
.fs.done .fs-lb2::before { background: var(--green); }
.fs.run .fs-lb2::before { background: var(--amber); }
.fs.lock .fs-lb2::before { background: #b6c2d1; }
.fs-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.fs-chips span {
  font-size: 12px; line-height: 1.5; padding: 4px 11px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--text-2);
  box-shadow: 0 1px 2px rgba(15,40,80,.05);
}
.fs-chips span.hl { background: var(--brand-light); border-color: #bcd7f8; color: var(--brand); font-weight: 600; }
.fs-sig2 {
  display: flex; gap: 9px; align-items: flex-start; margin-top: 12px; padding: 9px 12px;
  border-radius: 10px; background: var(--green-bg); border: 1px solid #c9ead8;
  font-size: 12.6px; line-height: 1.7; color: var(--text-2);
}
.fs-sig2 .ck {
  flex-shrink: 0; width: 17px; height: 17px; border-radius: 50%; margin-top: 2px;
  background: var(--green); color: #fff; font-size: 10px;
  display: flex; align-items: center; justify-content: center;
}
.fs-sig2 b { color: var(--text); }
.fs.run .fs-sig2 { background: var(--amber-bg); border-color: #f0d4b8; }
.fs.run .fs-sig2 .ck { background: var(--amber); }
.fs.lock .fs-sig2 { background: #eef1f6; border-color: var(--line); }
.fs.lock .fs-sig2 .ck { background: #b6c2d1; }

/* ===== 站级信号阶梯（横向六格） ===== */
.ladder { display: flex; gap: 8px; margin-top: 4px; }
.lg {
  flex: 1; min-width: 0; position: relative;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 13px 13px;
  background: #fff;
}
.lg .no {
  font-size: 11px; font-weight: 800; font-family: ui-monospace, monospace;
  color: var(--text-3); letter-spacing: .5px;
}
.lg .lt { font-size: 13px; font-weight: 700; line-height: 1.5; margin-top: 5px; letter-spacing: -.2px; }
.lg .lm { font-size: 11.5px; color: var(--text-3); line-height: 1.6; margin-top: 5px; }
.lg.hit { background: linear-gradient(150deg, var(--green-bg), #fff 75%); border-color: #b7e6cd; }
.lg.hit .no { color: var(--green); }
.lg.hit::before {
  content: "✓"; position: absolute; top: 10px; right: 11px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--green); color: #fff;
  font-size: 9.5px; display: flex; align-items: center; justify-content: center;
}
.lg.now {
  background: linear-gradient(150deg, #eaf3ff, #fff 75%);
  border-color: #b9d5f8; box-shadow: 0 0 0 3px rgba(32,128,247,.10);
}
.lg.now .no, .lg.now .lt { color: var(--brand); }
.lg.now .lm { color: var(--text-2); }
.lg-note { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.lg-note span {
  font-size: 12px; color: var(--text-2); background: var(--bg);
  border: 1px dashed var(--line); border-radius: 8px; padding: 5px 11px;
}
.lg-note b { color: var(--text); }

/* ===== 「门开着，门口挂牌」—— 未锁但有建议时机的步骤 ===== */
.fs.soon .fs-n { background: #eef2f8; color: var(--text-3); border-color: #d3dfee; }
.fs.soon .fs-card { background: linear-gradient(140deg, #fff 60%, #f2f6fb); }
.fs.soon .fs-card::after { color: rgba(70,95,130,.07); }
.fs.soon .fs-lb2::before { background: #8fa3bd; }
.fs-when {
  display: flex; gap: 9px; align-items: flex-start; margin-top: 12px; padding: 10px 13px;
  border-radius: 10px; background: #fff7ed; border: 1px solid #f3d6ae;
  font-size: 12.6px; line-height: 1.75; color: #7a4a18;
}
.fs-when .wk {
  flex-shrink: 0; width: 17px; height: 17px; border-radius: 50%; margin-top: 2px;
  background: var(--amber); color: #fff; font-size: 10px;
  display: flex; align-items: center; justify-content: center;
}
.fs-when b { color: #56320b; }
