/* ===================================================================
   Next Offer V07 · AI 伙伴一体化版
   设计语言：极光深色 Hero + 通透内容区 + 流式生成 + 运动
   =================================================================== */
:root {
  /* 品牌渐变 */
  --g1: #6366f1;   /* indigo */
  --g2: #8b5cf6;   /* violet */
  --g3: #22d3ee;   /* cyan   */
  --grad: linear-gradient(120deg, var(--g1), var(--g2) 55%, var(--g3));
  --grad-soft: linear-gradient(120deg, #eef0ff, #f3ecff 55%, #e7fbff);

  --ink: #0f1222;
  --ink-2: #2b2f45;
  --muted: #6b7280;
  --muted-2: #9aa1af;
  --line: #e9ebf3;
  --line-2: #f1f2f8;
  --bg: #f6f7fb;
  --card: #ffffff;

  --ok: #10b981;
  --warn: #f59e0b;
  --danger: #f43f5e;

  --dark: #0b0d17;
  --dark-2: #12152a;

  --r: 18px;
  --r-lg: 26px;
  --r-sm: 11px;
  --sh-sm: 0 1px 2px rgba(16,18,34,.05);
  --sh: 0 6px 24px rgba(16,18,34,.07), 0 1px 3px rgba(16,18,34,.05);
  --sh-lg: 0 24px 60px rgba(30,26,80,.14);
  --sh-glow: 0 10px 40px rgba(99,102,241,.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
  color: var(--ink); background: var(--bg); line-height: 1.65; font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }
::selection { background: rgba(139,92,246,.22); }

.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hide { display: none !important; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt4{margin-top:4px}.mt8{margin-top:8px}.mt12{margin-top:12px}.mt16{margin-top:16px}.mt24{margin-top:24px}.mt32{margin-top:32px}

/* ---------------- 顶部导航 ---------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.72); backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 22px; height: 64px; display: flex; align-items: center; gap: 22px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 850; font-size: 18px; letter-spacing: 0; white-space: nowrap; }
.logo .dot { width: 29px; height: 29px; border-radius: 10px; background: linear-gradient(135deg,#4b62ed 4%,#8e35ee 52%,#20bfe3 100%); box-shadow: 0 7px 20px rgba(101,73,225,.28), inset 0 -1px 2px rgba(29,22,112,.3); position: relative; flex: none; }
.logo .dot::before { content:""; position:absolute; inset:1px; border-radius:9px; border:1px solid rgba(255,255,255,.34); }
.logo .dot::after { content:""; position:absolute; inset:7px; border-radius:6px; background: #fff; box-shadow: inset 0 1px 3px rgba(47,30,108,.24); }
.logo .grad-text { background: linear-gradient(100deg,#8436e8 0%,#1eb8e2 92%); -webkit-background-clip:text; background-clip:text; }
.nav-links { display: flex; gap: 2px; flex: 1; overflow-x: auto; scrollbar-width: none; }
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a { padding: 8px 13px; border-radius: 10px; color: var(--muted); font-weight: 600; font-size: 14.5px; white-space: nowrap; transition: .18s; }
.nav-links a:hover { color: var(--ink); background: var(--line-2); }
.nav-links a.active { color: var(--ink); background: var(--grad-soft); }
.nav-cta {
  border: none; border-radius: 12px; padding: 9px 20px; font-weight: 700; font-size: 14px; color: #fff;
  background: var(--grad); box-shadow: var(--sh-glow); white-space: nowrap; transition: transform .15s, filter .15s;
}
.nav-cta:hover { transform: translateY(-1px); filter: brightness(1.06); }
.nav-cta.ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }

/* ---------------- 页面容器 & 视图过渡 ---------------- */
#app { min-height: 70vh; }
.page { max-width: 1200px; margin: 0 auto; padding: 40px 22px 90px; }
.page-narrow { max-width: 900px; }
.view-in { animation: viewIn .5s cubic-bezier(.22,.61,.36,1) both; }
@keyframes viewIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* 子元素依次浮现 */
.stagger > * { animation: rise .55s cubic-bezier(.22,.61,.36,1) both; }
.stagger > *:nth-child(1){animation-delay:.02s}.stagger > *:nth-child(2){animation-delay:.07s}
.stagger > *:nth-child(3){animation-delay:.12s}.stagger > *:nth-child(4){animation-delay:.17s}
.stagger > *:nth-child(5){animation-delay:.22s}.stagger > *:nth-child(6){animation-delay:.27s}
.stagger > *:nth-child(7){animation-delay:.32s}.stagger > *:nth-child(8){animation-delay:.37s}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------------- 章节标题 ---------------- */
.eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 800; letter-spacing: .6px; color: var(--g2); text-transform: uppercase; }
.eyebrow::before { content:""; width: 18px; height: 2px; border-radius: 2px; background: var(--grad); }
.h-sec { font-size: 23px; font-weight: 800; letter-spacing: -.4px; margin-top: 8px; }
.sub-sec { color: var(--muted); margin-top: 6px; font-size: 14.5px; }
.page-head { text-align: center; padding: 20px 0 30px; }
.page-head h1 { font-size: 34px; font-weight: 850; letter-spacing: -.9px; line-height: 1.22; margin-top: 12px; }
.page-head p { color: var(--muted); font-size: 16px; margin-top: 12px; max-width: 620px; margin-inline: auto; }
@media (max-width:720px){ .page-head h1{font-size:26px} }

/* ---------------- 卡片 ---------------- */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh); padding: 24px; }
.card-pad-lg { padding: 30px; }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
@media (max-width:900px){ .grid-2,.grid-3{ grid-template-columns:1fr; } }

/* ---------------- 按钮 ---------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; border-radius: 13px; font-weight: 700; font-size: 15px; padding: 12px 26px; white-space: nowrap; transition: transform .15s, filter .15s, box-shadow .15s; }
.btn:active { transform: scale(.98); }
.btn-primary { color: #fff; background: var(--grad); box-shadow: var(--sh-glow); }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--g2); color: var(--g2); }
.btn-dark { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-dark:hover { background: rgba(255,255,255,.18); }
.btn-sm { padding: 8px 15px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 15px 40px; font-size: 16px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* ---------------- 首页 HERO（极光深色） ---------------- */
.hero { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--dark); color: #fff; padding: 66px 30px 54px; text-align: center; box-shadow: var(--sh-lg); }
.hero .aurora { position: absolute; inset: -40% -10% auto -10%; height: 120%; filter: blur(70px); opacity: .8; pointer-events: none; }
.hero .aurora i { position: absolute; border-radius: 50%; }
.hero .aurora i:nth-child(1){ width: 460px; height: 460px; left: 8%; top: -10%; background: #6366f1; animation: float1 14s ease-in-out infinite; }
.hero .aurora i:nth-child(2){ width: 420px; height: 420px; right: 6%; top: 0; background: #8b5cf6; animation: float2 16s ease-in-out infinite; }
.hero .aurora i:nth-child(3){ width: 360px; height: 360px; left: 40%; top: 20%; background: #22d3ee; opacity: .7; animation: float1 18s ease-in-out infinite reverse; }
@keyframes float1 { 50% { transform: translate(30px,20px) scale(1.08); } }
@keyframes float2 { 50% { transform: translate(-26px,24px) scale(.94); } }
.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.hero .badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); font-size: 12.5px; font-weight: 600; }
.hero .badge .live { width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
.hero h1 { font-size: 46px; font-weight: 850; letter-spacing: -1.4px; line-height: 1.18; margin: 20px 0 0; }
.hero h1 em { font-style: normal; background: linear-gradient(120deg,#a5b4fc,#c4b5fd,#67e8f9); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .slogan { color: rgba(255,255,255,.72); font-size: 17px; margin-top: 16px; }
@media (max-width:720px){ .hero h1{font-size:31px} .hero{padding:48px 18px 40px} }

/* 魔法输入框 */
.ask { display: flex; gap: 10px; background: rgba(255,255,255,.97); border-radius: 16px; padding: 9px 9px 9px 18px; margin-top: 26px; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.ask input { flex: 1; border: none; outline: none; background: transparent; font-size: 16px; color: var(--ink); }
.ask input::placeholder { color: var(--muted-2); }
@media (max-width:560px){ .ask { flex-direction: column; padding: 12px; } .ask input { padding: 6px 4px; } .ask .btn { width: 100%; } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.chips button { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.86); border-radius: 999px; padding: 6px 15px; font-size: 13px; transition: .15s; }
.chips button:hover { background: rgba(255,255,255,.18); }

/* 魔法时刻输出 */
.magic { margin-top: 20px; text-align: left; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 20px 22px; }
.magic .who { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.7); font-weight: 600; }
.magic .who .ai-dot { width: 22px; height: 22px; border-radius: 7px; background: var(--grad); flex: none; }
.magic .body { margin-top: 12px; font-size: 15.5px; line-height: 1.8; color: #fff; white-space: pre-wrap; }
.magic .act { margin-top: 16px; }

/* ---------------- 旅程地图（首页核心） ---------------- */
.journey { position: relative; margin-top: 14px; }
.journey-track { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; position: relative; }
.journey-track::before { content:""; position: absolute; left: 8%; right: 8%; top: 34px; height: 3px; background: var(--line); border-radius: 3px; z-index: 0; }
.jnode { position: relative; z-index: 1; text-align: center; }
.jnode .orb { width: 70px; height: 70px; margin: 0 auto; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh); display: flex; align-items: center; justify-content: center; font-size: 30px; transition: .2s; cursor: pointer; }
.jnode:hover .orb { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.jnode.done .orb { background: var(--grad); border: none; box-shadow: var(--sh-glow); }
.jnode.cur .orb { border: 2px solid var(--g2); }
.jnode .lbl { font-weight: 700; font-size: 14px; margin-top: 12px; }
.jnode .st { font-size: 12px; color: var(--muted); margin-top: 2px; }
.jnode .st.on { color: var(--g2); font-weight: 700; }
.jnode .st.ok { color: var(--ok); font-weight: 700; }
@media (max-width:820px){ .journey-track{ grid-template-columns:repeat(2,1fr); gap:18px; } .journey-track::before{display:none} }

/* 论文旁支 */
.side-lane { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding: 16px 20px; border-radius: var(--r); border: 1px dashed var(--line); background: #fff; }
.side-lane .ic { font-size: 26px; }

/* 六入口（次级，紧凑列表） */
.entry-mini { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: .18s; }
.entry-mini:hover { transform: translateY(-2px); border-color: var(--g2); box-shadow: var(--sh); }
.entry-mini .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; font-size: 22px; flex: none; }
.entry-mini h4 { font-size: 15.5px; font-weight: 800; }
.entry-mini p { font-size: 13px; color: var(--muted); margin-top: 1px; }
.entry-mini .go { margin-left: auto; color: var(--g2); font-weight: 800; opacity: 0; transition: .18s; }
.entry-mini:hover .go { opacity: 1; }

/* ---------------- 下一步横幅 ---------------- */
.next-banner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; border-radius: var(--r); padding: 22px 26px; background: var(--grad-soft); border: 1px solid #e4e2ff; }
.next-banner .ic { width: 50px; height: 50px; border-radius: 15px; background: var(--grad); box-shadow: var(--sh-glow); display: flex; align-items: center; justify-content: center; font-size: 24px; flex: none; }
.next-banner .tx { flex: 1; min-width: 240px; }
.next-banner .tx b { font-size: 16px; }
.next-banner .tx p { color: var(--muted); font-size: 13.5px; margin-top: 3px; }

/* ---------------- 表单 ---------------- */
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px 18px; }
@media (max-width:720px){ .form-grid{grid-template-columns:1fr} }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.field label .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 11px 14px; font-size: 14px; background: #fff; color: var(--ink); transition: .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--g2); box-shadow: 0 0 0 4px rgba(139,92,246,.12); }
.field textarea { resize: vertical; min-height: 76px; }
.field-full { grid-column: 1/-1; }

/* ---------------- AI 思考 / 流式 ---------------- */
.thinking { display: flex; align-items: center; gap: 12px; padding: 26px; color: var(--muted); font-size: 14.5px; }
.thinking .spinner { width: 22px; height: 22px; border-radius: 50%; border: 2.5px solid var(--line); border-top-color: var(--g2); animation: spin .8s linear infinite; flex: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.thinking .txt { font-weight: 600; }
.skeleton { border-radius: 12px; background: linear-gradient(90deg,#eef0f6 25%,#f6f7fb 50%,#eef0f6 75%); background-size: 200% 100%; animation: shimmer 1.3s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.sk-line { height: 13px; margin: 9px 0; }
.streaming::after { content: "▍"; color: var(--g2); animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }

/* ---------------- 方向结果卡 + 匹配环 ---------------- */
.res-card { position: relative; }
.res-card .top { display: flex; align-items: center; gap: 16px; }
.ring { position: relative; width: 62px; height: 62px; flex: none; }
.ring svg { transform: rotate(-90deg); }
.ring .track { fill: none; stroke: var(--line); stroke-width: 6; }
.ring .val { fill: none; stroke: url(#ggrad); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 163.4; stroke-dashoffset: 163.4; transition: stroke-dashoffset 1.1s cubic-bezier(.22,.61,.36,1); }
.ring b { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; }
.res-card h3 { font-size: 17px; font-weight: 800; }
.res-card .rank { font-size: 12px; font-weight: 800; color: var(--g2); letter-spacing: .5px; }
.kv { margin-top: 14px; }
.kv .k { font-size: 12px; font-weight: 800; color: var(--g2); letter-spacing: .5px; }
.kv .v { font-size: 13.5px; margin-top: 3px; }
.kv ul { margin: 4px 0 0 17px; font-size: 13.5px; }
.kv li { margin-top: 3px; }

/* 能力差距条 */
.gap { margin-top: 6px; }
.gap .row { display: flex; align-items: center; gap: 10px; margin-top: 7px; font-size: 13px; }
.gap .bar { flex: 1; height: 7px; border-radius: 999px; background: var(--line); overflow: hidden; }
.gap .bar i { display: block; height: 100%; border-radius: 999px; background: var(--grad); width: 0; transition: width 1s cubic-bezier(.22,.61,.36,1); }

/* 计划列表 */
.plan { list-style: none; }
.plan li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.plan li:last-child { border: none; }
.plan .day { flex: none; height: fit-content; margin-top: 1px; background: var(--grad-soft); color: var(--g2); font-size: 12px; font-weight: 800; border-radius: 8px; padding: 2px 10px; white-space: nowrap; }

/* ---------------- Tabs / pills ---------------- */
.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pills button { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px; font-size: 14px; font-weight: 600; color: var(--muted); transition: .15s; }
.pills button:hover { color: var(--ink); }
.pills button.active { background: var(--grad); border-color: transparent; color: #fff; box-shadow: var(--sh-glow); }

/* ---------------- 企业卡 ---------------- */
.co-card { padding: 20px; transition: .18s; }
.co-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.co-card .top { display: flex; gap: 12px; align-items: flex-start; }
.co-logo { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 16px; flex: none; }
.co-card h3 { font-size: 16px; font-weight: 800; }
.co-card .meta { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.tag { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.tag-ok { background: #e7f9f1; color: var(--ok); }
.tag-warn { background: #fef3e2; color: var(--warn); }
.tag-info { background: var(--grad-soft); color: var(--g2); }
.co-card .links { display: flex; gap: 14px; margin-top: 12px; font-size: 13px; }
.co-card .links a { color: var(--g2); font-weight: 600; }
.co-card .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line-2); }
.co-card .upd { font-size: 12px; color: var(--muted-2); }

/* ---------------- 看板 ---------------- */
.kanban { display: grid; gap: 12px; }
.kanban.k5 { grid-template-columns: repeat(5,1fr); }
.kanban.k4 { grid-template-columns: repeat(4,1fr); }
@media (max-width:900px){ .kanban.k5,.kanban.k4{ grid-template-columns:repeat(2,1fr); } }
.kcol { background: #f2f3f9; border-radius: 15px; padding: 13px; min-height: 120px; }
.kcol h4 { font-size: 12.5px; font-weight: 800; color: var(--muted); display: flex; justify-content: space-between; align-items: center; margin-bottom: 11px; }
.kcol h4 .cnt { background: #fff; border-radius: 999px; padding: 1px 9px; font-size: 12px; color: var(--ink); }
.kitem { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 11px 13px; margin-bottom: 9px; box-shadow: var(--sh-sm); animation: rise .4s both; }
.kitem b { display: block; font-size: 13.5px; }
.kitem .s { color: var(--muted); font-size: 12px; }
.kitem .ops { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.kitem .ops button { font-size: 12px; border: 1px solid var(--line); background: #fff; border-radius: 7px; padding: 3px 9px; color: var(--g2); font-weight: 600; }
.kitem .ops button:hover { border-color: var(--g2); }

/* ---------------- 步骤条 ---------------- */
.stepper { display: flex; flex-wrap: wrap; gap: 8px; counter-reset: s; }
.stepper span { counter-increment: s; display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px 7px 8px; font-size: 13px; font-weight: 600; color: var(--muted); transition: .18s; }
.stepper span::before { content: counter(s); width: 23px; height: 23px; border-radius: 50%; background: var(--bg); color: var(--muted); font-size: 12px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.stepper span.cur { border-color: var(--g2); color: var(--g2); }
.stepper span.cur::before { background: var(--grad); color: #fff; }
.stepper span.done { border-color: transparent; color: var(--ok); background: #e7f9f1; }
.stepper span.done::before { content: "✓"; background: var(--ok); color: #fff; }

/* ---------------- 进度 / 统计 ---------------- */
.progress { height: 9px; background: #eaecf4; border-radius: 999px; overflow: hidden; }
.progress i { display: block; height: 100%; border-radius: 999px; background: var(--grad); width: 0; transition: width .8s cubic-bezier(.22,.61,.36,1); }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
@media (max-width:720px){ .stat-row{ grid-template-columns:repeat(2,1fr); } }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 15px; padding: 18px 14px; text-align: center; box-shadow: var(--sh-sm); }
.stat b { display: block; font-size: 26px; font-weight: 850; letter-spacing: -.5px; }
.stat span { font-size: 12.5px; color: var(--muted); }

/* ---------------- todo ---------------- */
.todo { list-style: none; }
.todo li { display: flex; align-items: center; gap: 11px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.todo li:last-child { border: none; }
.todo input { width: 18px; height: 18px; accent-color: var(--g2); flex: none; }
.todo li.done span { color: var(--muted-2); text-decoration: line-through; }

/* ---------------- 提示 / 空态 ---------------- */
.notice { border-radius: 13px; padding: 12px 16px; font-size: 13.5px; }
.notice-amber { background: #fff9ee; border: 1px solid #fbe2b6; color: #8a5b00; }
.notice-blue { background: var(--grad-soft); border: 1px solid #e0dcff; color: #4c3fb3; }
.empty { text-align: center; color: var(--muted); padding: 34px 14px; }
.empty .big { font-size: 34px; display: block; margin-bottom: 10px; }

/* ---------------- 伙伴 ORB ---------------- */
.companion { position: fixed; right: 22px; bottom: 22px; z-index: 55; display: flex; align-items: center; gap: 0; }
.companion .bubble { max-width: 0; overflow: hidden; white-space: nowrap; background: var(--dark); color: #fff; font-size: 13px; font-weight: 600; border-radius: 14px; box-shadow: var(--sh-lg); transition: max-width .35s, padding .35s, margin .35s; padding: 0; margin: 0; }
.companion:hover .bubble, .companion.open .bubble { max-width: 260px; padding: 11px 16px; margin-right: 10px; }
.companion .core { width: 58px; height: 58px; border-radius: 50%; background: var(--grad); box-shadow: var(--sh-glow); border: none; position: relative; flex: none; cursor: pointer; }
.companion .core::before { content:""; position: absolute; inset: 0; border-radius: 50%; background: var(--grad); animation: halo 2.4s ease-out infinite; z-index: -1; }
@keyframes halo { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.5);opacity:0} }
.companion .core::after { content:""; position: absolute; inset: 15px; border-radius: 40% 60% 55% 45%; background: rgba(255,255,255,.9); animation: morph 5s ease-in-out infinite; }
@keyframes morph { 50% { border-radius: 60% 40% 45% 55%; transform: rotate(180deg); } }

/* ---------------- toast ---------------- */
#toast { position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%) translateY(24px); background: var(--dark); color: #fff; padding: 12px 22px; border-radius: 14px; font-size: 14px; font-weight: 500; box-shadow: var(--sh-lg); opacity: 0; pointer-events: none; transition: .28s; z-index: 99; max-width: 88vw; }
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------------- footer ---------------- */
.footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 26px 22px; color: var(--muted); font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* ===================================================================
   AI 求职作战室
   =================================================================== */
.job-page {
  max-width: 1200px;
  padding-top: 24px;
  color: #111318;
}
.job-page button,
.job-page h1,
.job-page h2,
.job-page h3 { letter-spacing: 0; }
.job-hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  gap: 54px;
  align-items: center;
  padding: 64px;
  overflow: hidden;
  border-radius: 20px;
  background: #111318;
  color: #fff;
  box-shadow: 0 24px 70px rgba(17, 19, 24, .2);
  position: relative;
}
.job-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
  pointer-events: none;
}
.job-hero-copy,
.job-command-preview { position: relative; z-index: 1; }
.job-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #a9b0bb;
  font-size: 13px;
  font-weight: 750;
}
.job-kicker i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #55df86;
  box-shadow: 0 0 0 6px rgba(85,223,134,.12);
}
.job-hero h1 {
  margin-top: 22px;
  max-width: 680px;
  font-size: 49px;
  line-height: 1.16;
  font-weight: 850;
}
.job-hero-copy > p {
  max-width: 650px;
  margin-top: 22px;
  color: #b9bec7;
  font-size: 17px;
  line-height: 1.8;
}
.job-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.job-primary,
.job-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.job-primary {
  background: #55df86;
  color: #0d2415;
  box-shadow: 0 10px 28px rgba(85,223,134,.18);
}
.job-primary:hover { transform: translateY(-1px); background: #70e99a; }
.job-primary.compact { min-height: 38px; padding: 9px 15px; font-size: 13px; }
.job-primary[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.job-secondary { background: #fff; color: #191c22; border-color: #dfe2e7; }
.job-secondary:hover { border-color: #8b929d; }
.job-secondary.dark { background: transparent; color: #eef0f3; border-color: #424750; }
.job-secondary.dark:hover { background: #22262d; border-color: #6c737e; }
.job-btn-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13,36,21,.12);
  font-size: 15px;
}
.job-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; color: #89919d; font-size: 12px; }
.job-trust span { display: inline-flex; align-items: center; gap: 7px; }
.job-trust span::before { content: "✓"; color: #55df86; font-weight: 800; }

.job-command-preview {
  align-self: stretch;
  min-height: 350px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #343942;
  border-radius: 16px;
  background: #1b1e24;
  box-shadow: 0 28px 70px rgba(0,0,0,.26);
}
.job-command-preview.is-live { border-color: rgba(85,223,134,.4); }
.job-preview-top { display: flex; justify-content: space-between; align-items: center; color: #8f97a3; font-size: 12px; }
.job-preview-top b {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(85,223,134,.12);
  color: #72e99d;
  font-size: 11px;
}
.job-readiness { margin-top: 18px; }
.job-readiness > div { display: flex; align-items: flex-end; gap: 6px; }
.job-readiness strong { font-size: 70px; line-height: 1; font-weight: 850; color: #fff; }
.job-readiness small { padding-bottom: 9px; color: #727b87; font-size: 13px; }
.job-readiness > span { display: block; margin-top: 9px; color: #9ca3ad; font-size: 13px; }
.job-verdict { margin-top: 20px; padding-top: 18px; border-top: 1px solid #30343b; color: #eef0f3; font-size: 15px; line-height: 1.7; }
.job-preview-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 24px; }
.job-preview-metrics div { padding: 12px 5px; border-left: 1px solid #30343b; }
.job-preview-metrics div:first-child { border-left: none; }
.job-preview-metrics b { display: block; color: #fff; font-size: 20px; }
.job-preview-metrics span { display: block; margin-top: 2px; color: #7f8792; font-size: 11px; }

.job-stage-rail {
  position: sticky;
  top: 65px;
  z-index: 40;
  margin-top: 18px;
  padding: 9px;
  border: 1px solid #e1e4e8;
  border-radius: 12px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(17,19,24,.07);
}
.job-stage-rail > div { display: grid; grid-template-columns: repeat(5, 1fr); }
.job-stage-rail span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #9298a2;
  border-left: 1px solid #eceef1;
  font-size: 12.5px;
  font-weight: 700;
}
.job-stage-rail span:first-child { border-left: none; }
.job-stage-rail span i {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #f1f2f4;
  color: #969ca5;
  font-size: 10px;
  font-style: normal;
}
.job-stage-rail span.cur { color: #15171c; }
.job-stage-rail span.cur i { background: #15171c; color: #fff; }
.job-stage-rail span.done { color: #237c44; }
.job-stage-rail span.done i { background: #e5f8eb; color: #237c44; }

.job-section { padding: 76px 0 8px; scroll-margin-top: 126px; }
.job-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 24px; }
.job-section-head > div > span { color: #46715a; font-size: 12px; font-weight: 800; }
.job-section-head h2 { margin-top: 7px; font-size: 29px; line-height: 1.3; font-weight: 850; }
.job-section-head > p { max-width: 430px; color: #737985; font-size: 13.5px; text-align: right; }

.job-diagnosis-grid { display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(340px, .86fr); gap: 16px; }
.job-diagnostic-card {
  min-height: 420px;
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  gap: 26px;
  padding: 34px;
  border-radius: 14px;
  background: #111318;
  color: #fff;
}
.job-diagnostic-score {
  width: 142px;
  height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #3d444d;
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px #181b21;
}
.job-diagnostic-score strong { font-size: 44px; line-height: 1; }
.job-diagnostic-score span { margin-top: 8px; color: #8e96a2; font-size: 11px; }
.job-diagnostic-copy { padding-top: 7px; }
.job-live-label { color: #55df86; font-size: 11px; font-weight: 800; }
.job-diagnostic-copy h3 { margin-top: 10px; font-size: 24px; line-height: 1.4; }
.job-diagnostic-copy p { margin-top: 10px; color: #9da4ae; font-size: 13.5px; }
.job-factor-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 22px; align-self: end; }
.job-factor-list div > span { display: flex; justify-content: space-between; color: #9da4ae; font-size: 12px; }
.job-factor-list div > span b { color: #f2f4f6; }
.job-factor-list i,
.job-signal > i { height: 5px; display: block; margin-top: 8px; overflow: hidden; border-radius: 99px; background: #2a2e35; }
.job-factor-list em,
.job-signal em { height: 100%; display: block; border-radius: inherit; background: #55df86; }

.job-today-panel {
  padding: 30px;
  border: 1px solid #dfe2e6;
  border-radius: 14px;
  background: #fff;
}
.job-panel-label { font-size: 15px; font-weight: 850; }
.job-today-panel ol { list-style: none; margin-top: 12px; }
.job-today-panel li { display: grid; grid-template-columns: 32px minmax(0,1fr) auto; gap: 12px; align-items: start; padding: 17px 0; border-bottom: 1px solid #eceef1; }
.job-today-panel li > i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #17191e;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}
.job-today-panel li.done > i { background: #dff7e7; color: #237c44; }
.job-today-panel li b,
.job-today-panel li span { display: block; }
.job-today-panel li b { font-size: 13.5px; }
.job-today-panel li span { margin-top: 4px; color: #7a8089; font-size: 12px; line-height: 1.55; }
.job-today-panel li button { margin-top: 2px; border: none; background: transparent; color: #237c44; font-size: 12px; font-weight: 800; }
.job-coach-note { margin-top: 18px; padding: 14px; border-radius: 9px; background: #f0f7f2; color: #4b6254; font-size: 12px; }
.job-coach-note b { display: block; color: #1d5a34; margin-bottom: 3px; }

.job-resume-studio { display: grid; grid-template-columns: 290px minmax(0, 1fr); border: 1px solid #dfe2e6; border-radius: 14px; overflow: hidden; background: #fff; }
.job-resume-score { padding: 34px; background: #eef7f1; border-right: 1px solid #d9e8de; }
.job-resume-score > span { color: #4b6554; font-size: 12px; font-weight: 800; }
.job-resume-score > div { display: flex; align-items: flex-end; gap: 12px; margin-top: 18px; }
.job-resume-score b { font-size: 64px; line-height: 1; }
.job-resume-score small { padding-bottom: 7px; color: #277946; font-size: 12px; font-weight: 750; }
.job-resume-score p { margin-top: 22px; color: #52645a; font-size: 13px; line-height: 1.75; }
.job-diff { padding: 30px 34px; }
.job-diff-line { display: grid; grid-template-columns: 58px minmax(0,1fr); gap: 14px; padding: 16px 18px; border-radius: 10px; }
.job-diff-line span { font-size: 11px; font-weight: 800; }
.job-diff-line p { font-size: 14px; line-height: 1.65; }
.job-diff-line.before { background: #f5f6f7; color: #6b717a; }
.job-diff-line.after { background: #ecf9f0; color: #173e25; }
.job-diff-line.after span { color: #237c44; }
.job-diff-arrow { padding: 4px 0 4px 32px; color: #858b95; }
.job-diff-reason { display: flex; flex-wrap: wrap; gap: 7px 14px; margin-top: 18px; font-size: 12px; }
.job-diff-reason b { color: #22252b; }
.job-diff-reason span { color: #727984; }
.job-diff-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }

.job-radar-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 16px; }
.job-radar-toolbar > span { color: #7b818a; font-size: 12px; }
.job-segments { display: inline-grid; grid-auto-flow: column; gap: 3px; padding: 4px; border-radius: 10px; background: #e9ebee; }
.job-segments button { min-height: 34px; padding: 7px 14px; border: none; border-radius: 7px; background: transparent; color: #737983; font-size: 12px; font-weight: 750; }
.job-segments button.active { background: #fff; color: #17191e; box-shadow: 0 1px 3px rgba(17,19,24,.12); }
.job-opportunity-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.job-opportunity-card { padding: 23px; border: 1px solid #dfe2e6; border-radius: 12px; background: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.job-opportunity-card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(17,19,24,.08); }
.job-card-top { display: grid; grid-template-columns: 42px minmax(0,1fr) auto; gap: 12px; align-items: center; }
.job-company-mark { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 9px; background: #17191e; color: #fff; font-weight: 850; }
.job-card-title { min-width: 0; }
.job-card-title > span { display: block; color: #777e88; font-size: 11.5px; }
.job-card-title h3 { margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; }
.job-match { text-align: right; }
.job-match b { display: block; color: #267747; font-size: 19px; }
.job-match span { display: block; color: #9298a1; font-size: 10px; }
.job-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.job-card-tags > span { padding: 3px 8px; border-radius: 5px; background: #f0f2f4; color: #68707a; font-size: 10.5px; font-weight: 700; }
.job-card-tags .tier { color: #fff; background: #555d68; }
.job-card-tags .tier.冲刺 { background: #ca3f50; }
.job-card-tags .tier.主投 { background: #237c44; }
.job-card-tags .tier.稳妥 { background: #3968aa; }
.job-card-tags .deadline { margin-left: auto; background: #fff2db; color: #8c5d0d; }
.job-signal { margin-top: 18px; }
.job-signal > div { display: flex; justify-content: space-between; color: #747b85; font-size: 11.5px; }
.job-signal > div b { color: #237c44; }
.job-signal > i { background: #edf0f2; }
.job-opportunity-card dl { margin-top: 16px; }
.job-opportunity-card dl > div { display: grid; grid-template-columns: 88px minmax(0,1fr); gap: 10px; padding: 9px 0; border-top: 1px solid #eceef1; }
.job-opportunity-card dt { color: #4b525b; font-size: 11.5px; font-weight: 800; }
.job-opportunity-card dd { color: #707680; font-size: 12px; }
.job-opportunity-card dl .gap dd { color: #b34b57; }
.job-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.job-card-actions button { min-width: 0; white-space: normal; }
.job-empty-filter { grid-column: 1 / -1; padding: 50px; text-align: center; color: #7b818b; border: 1px dashed #cfd3d8; border-radius: 12px; }
.job-unlock-strip { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 14px; padding: 20px 22px; border-radius: 12px; background: #191c22; color: #fff; }
.job-unlock-strip div span,
.job-unlock-strip div b { display: block; }
.job-unlock-strip div span { color: #8f97a2; font-size: 11px; }
.job-unlock-strip div b { margin-top: 3px; font-size: 13px; }

.job-kanban { display: grid; grid-template-columns: repeat(5, minmax(160px,1fr)); gap: 10px; overflow-x: auto; padding-bottom: 8px; }
.job-kcol { min-height: 190px; padding: 12px; border-radius: 10px; background: #e9ecef; }
.job-kcol h4 { display: flex; justify-content: space-between; align-items: center; color: #565d67; font-size: 11.5px; }
.job-kcol h4 span { min-width: 23px; padding: 1px 6px; border-radius: 99px; background: #fff; color: #1d2026; text-align: center; }
.job-kcol > p { margin-top: 48px; color: #9aa0a8; text-align: center; font-size: 11px; }
.job-kitem { margin-top: 11px; padding: 11px; border: 1px solid #d8dce1; border-radius: 8px; background: #fff; }
.job-kitem b,
.job-kitem > span { display: block; }
.job-kitem b { font-size: 12.5px; }
.job-kitem > span { margin-top: 2px; color: #767d87; font-size: 10.5px; }
.job-kitem > div { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 9px; }
.job-kitem button { min-height: 27px; padding: 4px 7px; border: 1px solid #dfe2e6; border-radius: 6px; background: #fff; color: #287947; font-size: 10px; font-weight: 750; }

.job-interview-lab { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr); border: 1px solid #dfe2e6; border-radius: 14px; overflow: hidden; background: #fff; }
.job-question { padding: 34px; }
.job-question > span { color: #297949; font-size: 11px; font-weight: 850; }
.job-question h3 { max-width: 620px; margin-top: 12px; font-size: 21px; line-height: 1.55; }
.job-question-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 24px; }
.job-question-tags i { padding: 4px 8px; border-radius: 5px; background: #eff1f3; color: #6f7680; font-size: 10.5px; font-style: normal; }
.job-question textarea { width: 100%; min-height: 150px; padding: 14px; resize: vertical; border: 1px solid #cfd3d8; border-radius: 9px; color: #17191e; font-size: 13px; line-height: 1.7; outline: none; }
.job-question textarea:focus { border-color: #287947; box-shadow: 0 0 0 3px rgba(40,121,71,.1); }
.job-answer-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.job-feedback { min-height: 330px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 34px; border-left: 1px solid #dfe2e6; background: #17191e; color: #fff; text-align: center; }
.job-feedback-empty { color: #fff; font-size: 15px; font-weight: 800; }
.job-feedback > p { max-width: 320px; margin-top: 8px; color: #8f97a2; font-size: 12px; }
.job-feedback.has-score { display: block; text-align: left; }
.job-feedback-score { display: flex; align-items: flex-end; gap: 10px; }
.job-feedback-score b { color: #55df86; font-size: 48px; line-height: 1; }
.job-feedback-score span { padding-bottom: 4px; color: #929aa5; font-size: 11px; }
.job-feedback h3 { margin-top: 18px; font-size: 16px; line-height: 1.55; }
.job-feedback ul { margin-top: 17px; list-style: none; }
.job-feedback li { display: grid; grid-template-columns: 52px minmax(0,1fr); gap: 10px; padding: 10px 0; border-top: 1px solid #30343b; font-size: 11.5px; }
.job-feedback li b { color: #55df86; }
.job-feedback li span { color: #a2a9b3; }

@media (max-width: 980px) {
  .job-hero { grid-template-columns: 1fr; gap: 34px; padding: 48px; }
  .job-command-preview { min-height: 300px; }
  .job-diagnosis-grid,
  .job-interview-lab { grid-template-columns: 1fr; }
  .job-feedback { border-left: none; border-top: 1px solid #343941; }
}
@media (max-width: 760px) {
  .job-page { padding: 14px 14px 70px; }
  .job-hero { min-height: 0; padding: 34px 22px; border-radius: 14px; }
  .job-hero h1 { font-size: 34px; }
  .job-hero-copy > p { font-size: 14px; }
  .job-hero-actions { display: grid; }
  .job-hero-actions button { width: 100%; }
  .job-command-preview { padding: 22px; }
  .job-readiness strong { font-size: 58px; }
  .job-stage-rail { top: 64px; overflow-x: auto; padding: 7px; }
  .job-stage-rail > div { min-width: 560px; }
  .job-section { padding-top: 58px; scroll-margin-top: 118px; }
  .job-section-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .job-section-head h2 { font-size: 24px; }
  .job-section-head > p { max-width: none; text-align: left; }
  .job-diagnostic-card { grid-template-columns: 1fr; padding: 26px 22px; }
  .job-diagnostic-score { width: 120px; height: 120px; }
  .job-diagnostic-copy { padding-top: 0; }
  .job-factor-list { grid-column: auto; grid-template-columns: 1fr; }
  .job-today-panel { padding: 22px; }
  .job-today-panel li { grid-template-columns: 30px minmax(0,1fr); }
  .job-today-panel li button { grid-column: 2; justify-self: start; }
  .job-resume-studio { grid-template-columns: 1fr; }
  .job-resume-score { border-right: none; border-bottom: 1px solid #d9e8de; }
  .job-diff { padding: 24px 20px; }
  .job-radar-toolbar { align-items: flex-start; flex-direction: column; }
  .job-segments { width: 100%; grid-auto-flow: row; grid-template-columns: repeat(2,1fr); }
  .job-opportunity-grid { grid-template-columns: 1fr; }
  .job-card-tags .deadline { margin-left: 0; }
  .job-card-actions { grid-template-columns: 1fr; }
  .job-unlock-strip { align-items: flex-start; flex-direction: column; }
  .job-unlock-strip button { width: 100%; }
  .job-question,
  .job-feedback { padding: 26px 22px; }
}
@media (max-width: 420px) {
  .job-hero h1 { font-size: 30px; }
  .job-preview-metrics span { font-size: 10px; }
  .job-diagnostic-score strong { font-size: 38px; }
  .job-diff-line { grid-template-columns: 1fr; gap: 5px; }
  .job-diff-arrow { padding-left: 16px; }
  .job-opportunity-card { padding: 18px; }
  .job-card-top { grid-template-columns: 38px minmax(0,1fr); }
  .job-company-mark { width: 38px; height: 38px; }
  .job-match { grid-column: 2; text-align: left; display: flex; align-items: center; gap: 5px; }
}
@media (prefers-reduced-motion: reduce) {
  .job-page * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
