/* 职达星球 · 网页版（参照 lollipop.plus/jobs 色系与格式）
 * 浅色黑白灰 + 白色毛玻璃侧边栏 + 黑色主按钮 + 大圆角
 */
:root {
  --bg: #F8F8F8;
  --surface: #FFFFFF;
  --sidebar-bg: rgba(255, 255, 255, 0.62);
  --border: #EEEEEE;
  --border-strong: #D1D5DB;
  --border-mid: rgba(25, 25, 25, 0.15);
  --text: #191919;
  --text-2: #737373;
  --text-3: #999999;
  --hover: rgba(25, 25, 25, 0.04);
  --active: rgba(25, 25, 25, 0.06);
  --ink: #191919;
  --btn-text: #FFFFFF;
  --user-bubble: #191919;          /* 用户消息气泡：黑色底 */
  --user-bubble-text: #FFFFFF;
  --font-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-feature: 20px;
  --radius-pill: 999px;
  --sidebar-w: 280px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  /* lollipop 动效系统 */
  --lp-motion-duration: 0.3s;
  --lp-motion-easing: cubic-bezier(0.23, 1, 0.32, 1);
  --lp-shadow-card-hover: 0 8px 20px rgba(25, 25, 25, 0.08);
  --lp-shadow-popover: 0 8px 24px rgba(25, 25, 25, 0.08);
  --lp-accent: #008cff;
}

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

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============ 背景流动光学元素 ============ */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .16;
  will-change: transform;
}
.ambient-blob.blue {
  width: 62vw;
  height: 62vw;
  top: -22%;
  left: -12%;
  background: radial-gradient(circle, #3A7BD5 0%, rgba(58,123,213,0) 70%);
  animation: driftBlue 28s ease-in-out infinite;
}
.ambient-blob.green {
  width: 56vw;
  height: 56vw;
  bottom: -26%;
  right: -16%;
  background: radial-gradient(circle, #2FBF8F 0%, rgba(47,191,143,0) 70%);
  animation: driftGreen 34s ease-in-out infinite;
}
@keyframes driftBlue {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(18vw, 12vh) scale(1.18); }
  66% { transform: translate(9vw, 22vh) scale(0.92); }
}
@keyframes driftGreen {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-16vw, -10vh) scale(1.12); }
  72% { transform: translate(-7vw, -18vh) scale(0.94); }
}
/* 雾化层：让背景光斑呈现柔和慢反射质感 */
.ambient-frost {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 28% 18%, rgba(255,255,255,.22) 0%, rgba(255,255,255,.06) 45%, transparent 70%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

button { font-family: inherit; }

.app {
  height: 100dvh;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* ============ 视图通用 ============ */
.view { display: none; height: 100%; flex-direction: column; }
.interview-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* ============ 黑色视频面试（v3） ============ */
.iv3-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.iv3-cam {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
  display: none;
}
.iv3-black {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: radial-gradient(120% 90% at 50% 20%, #1a1f29 0%, #000 72%);
}
.iv3-black-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
}
.iv3-black-sub { font-size: 13px; color: rgba(255,255,255,.5); }
.iv3-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  z-index: 3;
}
.iv3-timer {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 5px 16px;
  backdrop-filter: blur(8px);
}
.iv3-progress { font-size: 14px; color: rgba(255,255,255,.75); }
.iv3-finish {
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .15s var(--ease);
}
.iv3-finish:hover { background: rgba(255,255,255,.2); }
.iv3-hr {
  position: absolute;
  left: 16px;
  bottom: 84px;
  width: 150px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.45));
}
.iv3-avatar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
.iv3-avatar .iv-ai-head svg,
.iv3-avatar .iv-custom-avatar { width: 120px; height: 136px; border-radius: 50%; box-shadow: 0 12px 36px rgba(0,0,0,.45); }
.iv3-avatar-name {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 3px 12px;
}
.iv3-question {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 104px;
  width: min(680px, 86%);
  z-index: 2;
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 14px 22px;
  backdrop-filter: blur(10px);
}
.iv3-chat {
  position: absolute;
  left: 16px;
  bottom: 296px;
  width: 260px;
  max-height: 40%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
  padding-right: 4px;
}
.iv3-chat .msg { gap: 6px; }
.iv3-chat .msg .msg-avatar { width: 22px; height: 22px; font-size: 10px; }
.iv3-chat .msg .bubble { font-size: 12.5px; padding: 8px 10px; max-width: 100%; }
.iv3-chat .msg-ai .bubble { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.12); }
.iv3-chat .msg-user .bubble { background: rgba(61,143,232,.35); color: #fff; border: 1px solid rgba(61,143,232,.45); }
.iv3-inputbar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 44px;
  width: min(680px, 90%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.iv3-voice {
  flex-shrink: 0;
  min-width: 116px;
  height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 15px;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .15s var(--ease), transform .15s var(--ease);
}
.iv3-voice:hover { background: rgba(255,255,255,.24); }
.iv3-voice:disabled { opacity: .78; cursor: default; }
.iv3-voice .iv3-voice-ico { font-size: 17px; line-height: 1; }
.iv3-voice .iv3-voice-txt { letter-spacing: 0; }
.iv3-voice.recording {
  width: 48px;
  min-width: 48px;
  padding: 0;
  background: rgba(245,63,63,.88);
  animation: iv3Pulse 1.2s ease-in-out infinite;
}
.iv3-voice.recording .iv3-voice-txt { display: none; }
@keyframes iv3Pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,63,63,.5); }
  50% { box-shadow: 0 0 0 8px rgba(245,63,63,0); }
}
.iv3-textbox {
  flex: 1;
  position: relative;
  height: 48px;
}
.iv3-textbox input {
  width: 100%;
  height: 48px;
  font-size: 17px;
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 0 52px 0 22px;
  outline: none;
  backdrop-filter: blur(10px);
}
.iv3-textbox input::placeholder { color: rgba(255,255,255,.5); }
.iv3-textbox input:focus { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.2); }
.iv3-textbox .iv3-send {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 38px;
  height: 38px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s var(--ease), background .15s var(--ease);
}
.iv3-textbox .iv3-send:hover { transform: scale(1.05); background: #eee; }
.iv3-privacy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  z-index: 2;
  white-space: nowrap;
}
/* 摄像头选择弹窗 */
.iv3-cam-mask {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.iv3-cam-dialog {
  width: min(420px, 92%);
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  animation: lpFadeUp .3s var(--lp-motion-easing) both;
}
.iv3-cam-icon { font-size: 40px; margin-bottom: 10px; }
.iv3-cam-dialog h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.iv3-cam-dialog p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.iv3-privacy-tip {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-3);
  background: var(--bg);
  border-radius: 12px;
  padding: 10px 12px;
}
.iv3-set-row {
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 12px;
}
.iv3-set-row b { font-size: 14px; color: var(--text); }
.iv3-set-row p { font-size: 12px; color: var(--text-3); line-height: 1.6; margin-top: 4px; }
.iv3-set-btns { display: flex; gap: 8px; margin-top: 10px; }
.iv3-set-opt {
  flex: 1;
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  padding: 9px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s var(--ease);
}
.iv3-set-opt.active {
  background: #191919;
  color: #fff;
  border-color: #191919;
}
.iv3-cam-btns { display: flex; gap: 10px; margin-top: 22px; }
.iv3-cam-btns button {
  flex: 1;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border-radius: 999px;
  cursor: pointer;
}
.iv3-cam-yes { background: #191919; color: #fff; }
.iv3-cam-yes:hover { background: #333; }
.iv3-cam-no { background: #fff; color: var(--text); border: 1px solid var(--border-strong) !important; }
.iv3-cam-no:hover { background: var(--hover); }
@media (max-width: 767px) {
  .iv3-chat { display: none; }
  .iv3-question { top: 84px; font-size: 16px; }
  .iv3-hr { left: 8px; right: auto; bottom: 108px; width: 110px; }
}
.main.lp-view-switch .view.active { animation: lpViewIn .35s var(--lp-motion-easing) both; }
@keyframes lpViewIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* 工具介绍页锁定滚动（点击「开始」进入后才恢复） */
/* 工具介绍页原来用 .no-scroll 锁滚动，导致内容超高时（如面试辅助页）按钮够不着，
   已改为不锁：容器自己可滚，按钮一定能划到。这里保留类名但不再隐藏溢出，避免旧缓存页面卡死。 */
.no-scroll { overflow-y: auto !important; }

/* 工具介绍页（登录后默认展示） */
.tool-intro-wrap {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
}
.tool-intro {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 26px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(255,255,255,.78), rgba(255,255,255,.38));
  border: 1px solid rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 26px 60px rgba(25,25,25,.1), inset 0 1px 0 rgba(255,255,255,.95);
}
.ti-badge {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #191919;
  border: 1px solid #191919;
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 14px;
}
.tool-intro h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}
.ti-desc {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  letter-spacing: 0;
}
.ti-points {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: left;
  width: 100%;
}
.ti-points li {
  position: relative;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  padding-left: 26px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 16px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  text-align: left;
}
.ti-points li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 10px;
  font-weight: 800;
  color: var(--text);
}
.ti-btn {
  margin-top: 20px;
  border: none;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s var(--lp-motion-easing), box-shadow .18s var(--lp-motion-easing), background .15s var(--ease);
}
.ti-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(25,25,25,.2);
  background: #333;
}
.ti-btn:active { transform: scale(.98); }
.ti-times {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--active);
  border-radius: 999px;
  padding: 6px 18px;
}
.ti-btn-locked {
  background: #8a8f98;
  cursor: pointer;
}
.ti-btn-locked:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(138,143,152,.25);
  background: #767b84;
}
.view.active { display: flex; }

/* ============ 落地页（1:1 复刻 lollipop.plus 首页） ============ */
.view-login {
  background: #FFFFFF;
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.view-login.active { display: flex; }

/* 背景氛围层 */
.lp-hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 520px at 50% -120px, rgba(255,255,255,1), rgba(248,248,248,0)),
    linear-gradient(to bottom, #FFFFFF 0%, var(--bg) 55%);
}
.lp-hero-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 380px at 50% -80px, rgba(255,255,255,0.8), transparent 70%);
}

/* 顶部导航（毛玻璃） */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(25, 25, 25, 0.06);
}
.lp-nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700;
  color: var(--text); text-decoration: none;
  letter-spacing: -0.01em;
}
.lp-logo {
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 8px;
}
.lp-nav-right { display: flex; align-items: center; gap: 18px; }
.lp-nav-links { display: flex; align-items: center; gap: 22px; }
.lp-nav-links a { font-size: 14px; color: var(--text-2); text-decoration: none; transition: color .15s var(--ease); }
.lp-nav-links a:hover { color: var(--text); }
.lp-nav-login {
  border: none; background: none;
  font-size: 14px; color: var(--text-2);
  cursor: pointer; padding: 7px 10px;
  border-radius: 999px;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.lp-nav-login:hover { background: var(--hover); color: var(--text); }
.lp-nav-cta {
  border: none; background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 9px 20px; border-radius: 999px;
  cursor: pointer;
  transition: background .15s var(--ease);
}
.lp-nav-cta:hover { background: #333333; }

.lp-scroll {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* 首页滚动分页：每一板块一屏，滚动到对应区块 */
.lp-scroll > section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  content-visibility: auto;
  contain-intrinsic-size: auto 100vh;
}

/* Hero */
.lp-hero {
  padding: 0 24px;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}
.lp-hero-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 128px 0 36px;
}
.lp-hero-first {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  will-change: opacity, transform;
}
.lp-glass-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 860px;
  margin-top: 36px;
}
.lp-glass-arrow {
  flex-shrink: 0;
  font-size: 30px;
  font-weight: 800;
  color: #191919;
  line-height: 1;
  user-select: none;
}
.lp-glass-card {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 24px;
  aspect-ratio: 3 / 4;
  padding: 26px 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.38));
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: 0 18px 40px rgba(25,25,25,.06), inset 0 1px 0 rgba(255,255,255,.9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 9px;
  transition: transform .28s var(--lp-motion-easing), box-shadow .28s var(--lp-motion-easing);
}
.lp-glass-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 26px 50px rgba(25,25,25,.12);
}
.lp-glass-ico { font-size: 28px; line-height: 1; }
.lp-glass-card h3 { font-size: 21px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.lp-glass-desc { font-size: 12px; color: var(--text-2); }
.lp-glass-result {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(25,25,25,.08);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lp-glass-result b { font-size: 11px; color: var(--text-3); font-weight: 600; }
.lp-glass-result span { font-size: 12px; color: var(--text-2); line-height: 1.6; }
/* 三张液态玻璃卡：不同浅色标注 */
.lp-glass-card.tint-blue {
  background: linear-gradient(150deg, rgba(226,239,255,.92), rgba(255,255,255,.5));
  border-color: rgba(61,143,232,.25);
}
.lp-glass-card.tint-blue h3 { color: #1B5FB8; }
.lp-glass-card.tint-green {
  background: linear-gradient(150deg, rgba(231,247,238,.94), rgba(255,255,255,.5));
  border-color: rgba(22,163,74,.25);
}
.lp-glass-card.tint-green h3 { color: #177A45; }
.lp-glass-card.tint-orange {
  background: linear-gradient(150deg, rgba(255,242,229,.95), rgba(255,255,255,.5));
  border-color: rgba(245,130,32,.28);
}
.lp-glass-card.tint-orange h3 { color: #C96A12; }
@media (max-width: 767px) {
  .lp-glass-cards { flex-direction: column; gap: 8px; margin-top: 30px; }
  .lp-glass-arrow { transform: rotate(90deg); }
  .lp-glass-card { padding: 16px 16px; }
}
.lp-hero-copy { text-align: center; }
.lp-hero-copy h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--text);
}
.lp-hero-copy p {
  margin-top: 16px;
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--text-2);
  line-height: 1.8;
  letter-spacing: 0;
}
.lp-hero-cta { margin-top: 20px; display: flex; justify-content: center; }
.lp-cta-primary {
  border: none; background: var(--ink); color: #fff;
  font-size: 16px; font-weight: 600;
  padding: 14px 34px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s var(--ease), transform .1s var(--ease);
}
.lp-cta-primary:hover { background: #333333; }
.lp-cta-primary:active { transform: scale(0.98); }

/* 产品预览（模拟界面） */
.lp-preview {
  margin-top: 40px;
  border-radius: 20px;
  border: 1px solid rgba(25, 25, 25, 0.1);
  background: #fff;
  box-shadow: 0 24px 60px rgba(25, 25, 25, 0.1);
  display: flex;
  overflow: hidden;
  text-align: left;
}
.lp-preview-sidebar {
  width: 240px; flex-shrink: 0;
  background: #FBFBFA;
  border-right: 1px solid #EEEEEE;
  display: flex; flex-direction: column;
  padding: 16px 14px;
}
.lp-preview-brand { display: flex; align-items: center; gap: 8px; padding: 4px 6px 16px; }
.lp-preview-logo {
  width: 30px; height: 30px;
  object-fit: contain;
  border-radius: 7px;
}
.lp-preview-brand strong { font-size: 14px; font-weight: 700; }
.lp-preview-panel {
  margin-left: auto;
  width: 14px; height: 14px;
  border: 1px solid #D1D5DB; border-radius: 4px;
}
.lp-preview-nav { display: flex; flex-direction: column; gap: 2px; }
.lp-preview-navitem {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: #666666;
  padding: 7px 9px; border-radius: 8px;
}
.lp-preview-navitem.active { background: rgba(25,25,25,0.06); color: #191919; font-weight: 600; }
.lp-preview-ico { font-size: 12px; }
.lp-preview-txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.lp-preview-txt b { font-size: 12.5px; font-weight: 600; color: #191919; display: flex; align-items: center; gap: 5px; }
.lp-preview-txt small { font-size: 10px; color: #999999; font-weight: 400; white-space: nowrap; }
.lp-preview-txt em {
  font-style: normal; font-size: 9px; font-weight: 700; color: #fff;
  background: #E24B4B; border-radius: 999px; padding: 1px 6px; line-height: 1.5;
}
.lp-preview-navitem.hot {
  border: 1px solid rgba(31, 92, 77, 0.3);
  background: linear-gradient(180deg, rgba(243,250,247,.8), rgba(255,255,255,.5));
}
.lp-preview-navitem.hot .lp-preview-txt b { color: #1F5C4D; }
.lp-preview-bottom { margin-top: auto; padding-top: 14px; }
.lp-preview-invite {
  border: 1px solid #EEEEEE; border-radius: 12px; background: #fff;
  padding: 12px; display: flex; flex-direction: column; gap: 4px;
}
.lp-preview-invite strong { font-size: 12px; color: #191919; }
.lp-preview-invite span { font-size: 11px; color: #999999; }
.lp-preview-user { display: flex; align-items: center; gap: 8px; padding: 12px 4px 2px; }
.lp-preview-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.lp-preview-user strong { font-size: 13px; }
.lp-preview-balance { margin-left: auto; font-size: 11px; color: #666666; }

.lp-preview-workspace { flex: 1; min-width: 0; display: flex; flex-direction: column; background: #fff; }
.lp-preview-prompt { padding: 24px 24px 18px; }
.lp-preview-prompt h2 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.lp-preview-composer {
  border: 1px solid #D1D5DB; border-radius: 12px;
  padding: 13px 14px;
  display: flex; align-items: center; gap: 8px;
  background: #fff;
}
.lp-preview-composer-ph { flex: 1; font-size: 13px; color: #999999; }

/* 实际界面截图（独立一屏） */
.lp-screenshot { padding: 80px 24px 100px; }
.lp-shot-shell {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(25,25,25,.12);
  box-shadow: 0 30px 70px rgba(25,25,25,.14);
  background: #fff;
  transition: transform .3s var(--lp-motion-easing), box-shadow .3s var(--lp-motion-easing);
}
.lp-shot-shell:hover { transform: scale(1.015); box-shadow: 0 36px 80px rgba(25,25,25,.18); }
.lp-shot-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #F3F3F3;
  border-bottom: 1px solid #EEEEEE;
}
.lp-shot-bar span { width: 11px; height: 11px; border-radius: 50%; background: #E1E1E1; }
.lp-shot-bar span:nth-child(1) { background: #F76560; }
.lp-shot-bar span:nth-child(2) { background: #F6B93B; }
.lp-shot-bar span:nth-child(3) { background: #34C77B; }
.lp-shot-bar i {
  margin-left: 10px;
  font-style: normal;
  font-size: 12px;
  color: #737373;
  background: #fff;
  border: 1px solid #EEEEEE;
  border-radius: 999px;
  padding: 3px 14px;
}
.lp-shot-body {
  aspect-ratio: 16 / 10;
  display: flex;
  background: #F8F8F8;
}
.lp-shot-body .lp-preview { width: 100%; height: 100%; border: none; box-shadow: none; border-radius: 0; }
.lp-shot-body .lp-preview-workspace { background: #F8F8F8; }
.lp-shot-body .lp-preview-chat { flex: 1; min-height: 0; }
.lp-shot-body .lp-preview-sidebar { background: rgba(255,255,255,.8); }
/* 截图页：实际登录后界面（工具介绍海报） */
.lp-shot-intro {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 20px 30px;
  margin: 28px 32px;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(255,255,255,.82), rgba(255,255,255,.45));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 18px 40px rgba(25,25,25,.08), inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
}
.lp-shot-badge {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #191919;
  border-radius: 999px;
  padding: 5px 16px;
}
.lp-shot-intro h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #191919;
}
.lp-shot-intro p { font-size: 13px; color: #737373; line-height: 1.7; max-width: 320px; }
.lp-shot-intro ul {
  list-style: none;
  padding: 0;
  margin: 2px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lp-shot-intro ul li {
  font-size: 12px;
  color: #555;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(25,25,25,.08);
  border-radius: 12px;
  padding: 7px 14px;
}
.lp-shot-intro button {
  margin-top: 8px;
  border: none;
  background: #191919;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 38px;
  border-radius: 999px;
  cursor: pointer;
}
.lp-preview-tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.lp-preview-tool {
  border: 1px solid #EEEEEE; border-radius: 14px; background: #fff;
  padding: 12px; display: flex; flex-direction: column; gap: 4px;
}
.lp-preview-tool span { font-size: 18px; }
.lp-preview-tool b { font-size: 12.5px; color: #191919; display: flex; align-items: center; gap: 5px; }
.lp-preview-tool small { font-size: 10.5px; color: #999999; line-height: 1.4; }
.lp-preview-tool.hot {
  border-color: rgba(31, 92, 77, 0.35);
  background: linear-gradient(180deg, rgba(243,250,247,.95), #fff);
}
.lp-preview-tool em {
  font-style: normal; font-size: 9px; font-weight: 700; color: #fff;
  background: #E24B4B; border-radius: 999px; padding: 1px 6px;
}
.lp-preview-chat {
  flex: 1; min-height: 0; overflow: hidden;
  display: flex; flex-direction: column; gap: 10px;
  padding: 4px 24px 14px;
}
.lp-preview-msg { display: flex; gap: 8px; align-items: flex-start; }
.lp-preview-msg p {
  font-size: 12px; line-height: 1.65; color: #333;
  background: #F4F4F4; border-radius: 12px; padding: 9px 12px;
  max-width: 82%;
}
.lp-preview-msg.user { flex-direction: row-reverse; }
.lp-preview-msg.user p { background: #191919; color: #fff; }
.lp-preview-avatar.sm { width: 24px; height: 24px; font-size: 10px; flex-shrink: 0; }
.lp-preview-avatar.sm.dark { background: #191919; }
.lp-preview-send {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.lp-preview-suggestions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.lp-preview-suggestions span {
  font-size: 12px; color: #666666;
  border: 1px solid #EEEEEE; background: #FAFAFA;
  border-radius: 999px; padding: 5px 12px;
}
.lp-preview-jobs { border-top: 1px solid #EEEEEE; padding: 18px 24px 24px; }
.lp-preview-tabs { display: flex; gap: 18px; font-size: 14px; }
.lp-preview-tabs strong { font-weight: 700; }
.lp-preview-tabs span { color: #999999; }
.lp-preview-filters { display: flex; gap: 12px; margin-top: 12px; font-size: 12px; color: #999999; }
.lp-preview-jobgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.lp-preview-jobcard {
  border: 1px solid #EEEEEE; border-radius: 14px; background: #fff;
  padding: 14px; display: flex; flex-direction: column; gap: 6px;
}
.lp-preview-jobcard h3 { font-size: 14px; font-weight: 600; }
.lp-preview-jobcard p { font-size: 13px; color: #191919; font-weight: 600; }
.lp-preview-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.lp-preview-tags span {
  font-size: 11px; color: #737373;
  background: #F5F5F5; border-radius: 6px; padding: 2px 7px;
}
.lp-preview-company { display: flex; flex-direction: column; margin-top: 2px; }
.lp-preview-company strong { font-size: 12px; }
.lp-preview-company small { font-size: 11px; color: #999999; }

/* 数据条 */
.lp-stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.lp-stats-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}
.lp-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 240px; text-align: center; }
.lp-stat b {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}
.lp-stat span { font-size: 13px; color: var(--text-2); line-height: 1.6; letter-spacing: 0; }
.lp-dist {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lp-dist-label { font-size: 13px; color: var(--text-3); letter-spacing: 0; }
.lp-dist-items { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lp-dist-item {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0;
}
.lp-dist-item b { font-size: 16px; font-weight: 700; color: var(--text); }

/* 故事 */
.lp-story {
  max-width: 720px;
  margin: 0 auto;
  padding: 88px 24px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.lp-story-copy { display: flex; flex-direction: column; gap: 14px; }
.lp-story-lead { display: flex; align-items: flex-start; gap: 14px; }
.lp-story-lead span {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700;
}
.lp-story-lead p { font-size: 17px; font-weight: 500; line-height: 1.8; color: var(--text); }
.lp-story-copy > p { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-left: 54px; letter-spacing: 0; }
.lp-story-aside { font-size: 13px !important; color: var(--text-3) !important; }

/* 产品介绍 */
.lp-outcome {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 88px 24px;
}
.lp-section-intro { text-align: center; margin-bottom: 48px; }
.lp-section-intro h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.lp-section-intro p { margin-top: 14px; font-size: 15px; color: var(--text-2); letter-spacing: 0; }
.lp-outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.lp-outcome-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 1080px; }
@media (max-width: 900px) {
  .lp-outcome-grid-3 { grid-template-columns: 1fr; }
}
.lp-outcome-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-feature);
  background: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.lp-outcome-card:hover { box-shadow: 0 12px 32px rgba(25,25,25,0.08); border-color: var(--border-mid); }
.lp-eyebrow {
  font-size: 12px; font-weight: 600;
  color: var(--text-3); letter-spacing: 0;
}
.lp-outcome-card h3 {
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.4;
}
.lp-outcome-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.lp-outcome-card li {
  font-size: 14px; color: var(--text-2);
  padding-left: 18px; position: relative;
  letter-spacing: 0;
}
.lp-outcome-card li::before {
  content: ""; position: absolute; left: 2px; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--text-3);
}

/* 三大工具（首页差异化介绍） */
.lp-tools { padding: 96px 20px; max-width: 1080px; margin: 0 auto; }
.lp-tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-tool-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-feature);
  background: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.lp-tool-card:hover { transform: scale(1.03); box-shadow: 0 12px 32px rgba(25,25,25,0.08); border-color: var(--border-mid); }
.lp-tool-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.4; }
.lp-tool-card p { font-size: 14px; color: var(--text-2); line-height: 1.75; letter-spacing: 0; }
.lp-tool-card.lp-tool-hot {
  border: 1px solid #1F5C4D;
  background: linear-gradient(180deg, #F3FAF7 0%, #fff 60%);
}
.lp-tool-tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; color: #fff;
  background: #1F5C4D; border-radius: 999px; padding: 4px 12px;
}
@media (max-width: 767px) {
  .lp-tools-grid { grid-template-columns: 1fr; }
}
.lp-outcome-media {
  margin-top: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lp-media-sim {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-media-tag {
  align-self: flex-start;
  font-size: 11px; color: #737373;
  background: #F5F5F5;
  border-radius: 6px; padding: 2px 8px;
  letter-spacing: 0;
}
.lp-media-sim b { font-size: 14px; }
.lp-media-sim p { font-size: 12.5px; color: var(--text-2); line-height: 1.7; letter-spacing: 0; }

/* 四步流程 */
.lp-workflow {
  padding: 88px 24px;
  max-width: 960px;
  margin: 0 auto;
}
.lp-workflow-heading { text-align: center; margin-bottom: 48px; }
.lp-workflow-heading h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.lp-workflow-list { display: flex; flex-direction: column; gap: 16px; }
.lp-workflow-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-feature);
  background: #fff;
  display: flex;
  gap: 24px;
  padding: 28px;
  align-items: center;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.lp-workflow-card:hover { transform: scale(1.02); box-shadow: 0 12px 32px rgba(25,25,25,0.08); border-color: var(--border-mid); }
.lp-workflow-copy { flex: 1; min-width: 0; }
.lp-workflow-copy > span {
  font-size: 13px; font-weight: 700;
  color: var(--text-3); letter-spacing: 0;
}
.lp-workflow-copy > p { font-size: 13px; color: var(--text-2); margin-top: 2px; letter-spacing: 0; }
.lp-workflow-copy h3 {
  font-size: 18px; font-weight: 700;
  margin-top: 8px; line-height: 1.45;
  letter-spacing: -0.01em;
}
.lp-workflow-copy h3 span { display: block; }
.lp-workflow-copy div { margin-top: 12px; display: flex; flex-direction: column; gap: 5px; }
.lp-workflow-copy div span {
  font-size: 13px; color: var(--text-2);
  padding-left: 16px; position: relative;
  letter-spacing: 0;
}
.lp-workflow-copy div span::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--text-3);
}
.lp-workflow-visual { flex-shrink: 0; width: 300px; }
.lp-media-frame {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-3);
  padding: 20px;
  text-align: center;
  letter-spacing: 0;
}

/* 三大工具海报（不是单纯的辅助） */
.lp-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.lp-poster {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(160deg, #1b1f27 0%, #101319 100%);
  box-shadow: 0 24px 50px rgba(25,25,25,.16);
  transition: transform .3s var(--lp-motion-easing), box-shadow .3s var(--lp-motion-easing);
}
.lp-poster:hover { transform: scale(1.03); box-shadow: 0 30px 60px rgba(25,25,25,.24); }
.lp-poster:nth-child(1) { background: linear-gradient(160deg, #14202b 0%, #0d151d 100%); }
.lp-poster:nth-child(2) { background: linear-gradient(160deg, #1b2318 0%, #111711 100%); }
.lp-poster:nth-child(3) { background: linear-gradient(160deg, #1b1f27 0%, #101319 100%); }
.lp-poster-num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 52px;
  font-weight: 800;
  color: rgba(255,255,255,.12);
  line-height: 1;
}
.lp-poster-body { display: flex; flex-direction: column; gap: 8px; }
.lp-poster-ico { font-size: 34px; line-height: 1; }
.lp-poster h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.lp-poster p { font-size: 13px; color: rgba(255,255,255,.7); }
.lp-poster b {
  font-size: 14px; font-weight: 600; line-height: 1.6;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 12px;
}
@media (max-width: 900px) {
  .lp-poster-grid { grid-template-columns: 1fr; }
  .lp-poster { min-height: 200px; }
}

/* 会员方案 */
.lp-membership {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 88px 24px;
}
.lp-membership-heading { text-align: center; margin-bottom: 48px; }
.lp-membership-heading p {
  font-size: 13px; font-weight: 600;
  color: var(--text-3); letter-spacing: 0;
}
.lp-membership-heading h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-top: 8px;
}
.lp-membership-heading div { margin-top: 12px; font-size: 14px; color: var(--text-2); letter-spacing: 0; }
.lp-free-note {
  text-align: center; margin: -26px 0 30px; font-size: 13px; font-weight: 600;
  color: #1F5C4D; letter-spacing: 0;
}
.lp-membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}
.lp-plan {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-feature);
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-plan.featured {
  border: 2px solid var(--ink);
  background: linear-gradient(180deg, #F5F8FC 0%, #fff 62%);
  box-shadow: 0 16px 40px rgba(25,25,25,0.12);
}
.lp-plan.featured .lp-plan-tip {
  background: #191919;
  color: #fff;
  font-weight: 600;
}
.lp-plan-badge {
  position: absolute;
  top: -11px; left: 22px;
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 3px 12px;
  border-radius: 999px;
  letter-spacing: 0;
}
.lp-plan h3 { font-size: 16px; font-weight: 700; }
.lp-plan-tag-new {
  font-size: 10.5px;
  font-weight: 700;
  color: #E0342C;
  border: 1px solid rgba(224, 52, 44, .35);
  background: rgba(224, 52, 44, .06);
  padding: 1px 7px;
  border-radius: 999px;
  vertical-align: 2px;
  letter-spacing: 0;
  white-space: nowrap;
}
.lp-plan-price {
  font-size: 38px; font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.lp-plan-price small { font-size: 16px; font-weight: 400; color: var(--text-2); }
.lp-plan-orig {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-3);
  text-decoration: line-through;
  margin-left: 8px;
  letter-spacing: 0;
}
.lp-plan > p { font-size: 13px; color: var(--text-2); letter-spacing: 0; }
.lp-plan ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.lp-plan-tip {
  margin-top: 12px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-2);
  background: var(--bg);
  border-radius: var(--radius);
  letter-spacing: 0;
}
.lp-plan li {
  font-size: 13px; color: var(--text-2);
  padding-left: 18px; position: relative;
  letter-spacing: 0;
}
.lp-plan li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--text); font-weight: 700;
}
.lp-plan-btn {
  margin-top: auto;
  margin-bottom: 0;
  border: none; background: var(--ink); color: #fff;
  font-size: 16px; font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s var(--ease);
}
.lp-plan-btn:hover { background: #333333; }
.lp-plan > p { margin-bottom: 0; }
.lp-plan-tip { margin-bottom: 14px; }
.lp-plan:not(.featured) .lp-plan-btn {
  background: #fff; color: var(--text);
  border: 1px solid var(--border-mid);
}

/* 落地页旗舰版卡片上的拼团入口（3 人成团是主按钮，2 人成团是次按钮） */
.lp-plan-group { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 8px; }
.lp-plan-btn.lp-group-main,
.lp-plan-btn.lp-group-sub {
  flex: 1 1 auto;
  min-width: 140px;
  margin-top: 0;
  padding: 11px 14px;
  font-size: 14px;
  border: 1px solid var(--border-mid);
  background: #fff;
  color: var(--text);
}
.lp-plan-btn.lp-group-main { background: var(--ink); color: #fff; border-color: var(--ink); }
.lp-plan-btn.lp-group-main:hover { background: #333333; }
.lp-plan-btn.lp-group-sub:hover { background: var(--hover); }
.lp-plan-group-tip { font-size: 12px; color: var(--text-3); line-height: 1.7; margin: 0 0 12px; }
.lp-plan:not(.featured) .lp-plan-btn:hover { background: var(--hover); }

/* FAQ */
.lp-faq {
  padding: 88px 24px;
  max-width: 720px;
  margin: 0 auto;
}
.lp-simple-heading { text-align: center; margin-bottom: 40px; }
.lp-simple-heading h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.lp-faq-list { display: flex; flex-direction: column; gap: 8px; }
.lp-faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.lp-faq-q {
  width: 100%;
  border: none; background: none;
  text-align: left;
  font-size: 15px; font-weight: 600;
  color: var(--text);
  border-radius: 999px;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  letter-spacing: -0.01em;
}
.lp-faq-q::after {
  content: "+";
  font-size: 18px;
  color: var(--text-3);
  transition: transform .2s var(--ease);
  flex-shrink: 0;
}
.lp-faq-item.open .lp-faq-q::after { transform: rotate(45deg); }
.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s var(--ease);
}
.lp-faq-a-inner { padding: 0 20px 18px; }
.lp-faq-a-inner p { font-size: 14px; color: var(--text-2); line-height: 1.8; letter-spacing: 0; }

/* CTA + 页脚 */
.lp-cta {
  text-align: center;
  padding: 96px 24px 72px;
}
.lp-cta h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.lp-cta p { margin-top: 16px; font-size: 15px; color: var(--text-2); letter-spacing: 0; }
.lp-cta-sub { font-size: 13px !important; color: var(--text-3) !important; margin-top: 8px !important; }
.lp-cta-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.lp-cta-link {
  font-size: 15px; color: var(--text-2);
  text-decoration: none;
  transition: color .15s var(--ease);
}
.lp-cta-link:hover { color: var(--text); }
.lp-footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-3);
  font-size: 12px;
  letter-spacing: 0;
}
.lp-footer-info { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }

/* ============ 支付弹窗 ============ */
.pay-mask {
  display: none;
  position: fixed; inset: 0;
  background: rgba(25, 25, 25, 0.45);
  z-index: 80;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.pay-mask.show { display: flex; }
.pay-modal {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border-radius: var(--radius-feature);
  padding: 32px 26px 26px;
  box-shadow: 0 24px 60px rgba(25, 25, 25, 0.18);
  animation: modalIn .22s var(--ease);
}
.pay-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  border: none; background: transparent;
  border-radius: 50%;
  font-size: 20px; color: var(--text-3);
  cursor: pointer;
}
.pay-close:hover { background: var(--hover); color: var(--text); }
.pay-step { display: flex; flex-direction: column; gap: 14px; }
.pay-step h3 { font-size: 17px; font-weight: 700; text-align: center; }
.pay-sub { font-size: 13px; color: var(--text-2); text-align: center; letter-spacing: 0; }

/* ============ 报告提示弹窗（红字 + 叉号 + 灰/黑胶囊按钮） ============ */
.report-tip-mask {
  position: fixed; inset: 0;
  background: rgba(25, 25, 25, 0.45);
  z-index: 90;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .2s var(--ease);
}
.report-tip-mask.show { opacity: 1; }
.report-tip-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border-radius: var(--radius-feature);
  padding: 26px 24px 22px;
  box-shadow: 0 24px 60px rgba(25, 25, 25, 0.22);
  text-align: center;
  transform: translateY(10px) scale(.98);
  transition: transform .22s var(--ease);
}
.report-tip-mask.show .report-tip-card { transform: none; }
.report-tip-close {
  position: absolute;
  top: 10px; right: 12px;
  width: 32px; height: 32px;
  border: none; background: transparent;
  border-radius: 50%;
  font-size: 20px; color: var(--text-3);
  cursor: pointer;
  line-height: 1;
}
.report-tip-close:hover { background: var(--hover); color: var(--text); }
.report-tip-title { font-size: 18px; font-weight: 800; margin-bottom: 14px; }
.report-tip-red {
  font-size: 15px;
  font-weight: 700;
  color: #E0342C;
  line-height: 1.8;
  padding: 12px 14px;
  border: 1.5px solid rgba(224, 52, 44, .25);
  border-radius: 12px;
  background: rgba(224, 52, 44, .05);
}
.report-tip-note { font-size: 13px; color: var(--text-2); margin-top: 14px; line-height: 1.8; }
.report-tip-btns { display: flex; gap: 10px; margin-top: 18px; }
.report-tip-btn {
  flex: 1;
  padding: 12px 0;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s var(--ease), opacity .15s var(--ease);
}
.report-tip-btn:hover { transform: translateY(-1px); opacity: .92; }
.report-tip-btn.gray { background: #F0F0F0; color: #333; }
.report-tip-btn.dark { background: #191919; color: #fff; }

/* ============ 声音注册弹窗（面试辅助） ============ */
.voice-train-mask {
  position: fixed; inset: 0;
  background: rgba(25, 25, 25, 0.5);
  z-index: 96;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .2s var(--ease);
}
.voice-train-mask.show { opacity: 1; }
.voice-train-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border-radius: var(--radius-feature);
  padding: 26px 24px 22px;
  box-shadow: 0 24px 60px rgba(25, 25, 25, 0.24);
  transform: translateY(10px) scale(.98);
  transition: transform .22s var(--ease);
}
.voice-train-mask.show .voice-train-card { transform: none; }
.voice-train-close {
  position: absolute; top: 10px; right: 12px;
  width: 32px; height: 32px;
  border: none; background: transparent;
  border-radius: 50%;
  font-size: 20px; color: var(--text-3);
  cursor: pointer; line-height: 1;
}
.voice-train-close:hover { background: var(--hover); color: var(--text); }
.voice-train-title { font-size: 18px; font-weight: 800; margin-bottom: 10px; text-align: center; }
.voice-train-tip { font-size: 13px; color: var(--text-2); line-height: 1.8; margin-bottom: 12px; text-align: left; }
.voice-train-script {
  font-size: 15px; line-height: 1.9; color: var(--text);
  background: rgba(109, 85, 230, .07);
  border: 1px solid rgba(109, 85, 230, .22);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  text-align: left;
}
.voice-train-state {
  font-size: 13px; color: var(--text-2); line-height: 1.8;
  min-height: 40px; margin-bottom: 14px; text-align: left;
}
.voice-train-state .ok { color: #159c58; font-weight: 600; }
.voice-train-state .err { color: #E0342C; font-weight: 600; }
.voice-train-btns { display: flex; gap: 10px; }
.voice-train-btn {
  flex: 1;
  padding: 12px 0;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s var(--ease), opacity .15s var(--ease);
}
.voice-train-btn.ghost { background: #F0F0F0; color: #333; }
.voice-train-btn.dark { background: #191919; color: #fff; }
.voice-train-btn.rec { background: #E0342C; color: #fff; animation: iv3Pulse 1.2s ease-in-out infinite; }
.voice-train-btn:disabled { opacity: .55; cursor: not-allowed; }

/* ============ 情绪高点分享卡 ============ */
.share-card-mask {
  position: fixed; inset: 0;
  background: rgba(25, 25, 25, 0.48);
  z-index: 95;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  opacity: 0;
  transition: opacity .2s var(--ease);
}
.share-card-mask.show { opacity: 1; }
.share-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: 24px;
  padding: 24px 22px 20px;
  box-shadow: 0 24px 60px rgba(25, 25, 25, 0.24);
  text-align: center;
  transform: translateY(10px) scale(.98);
  transition: transform .22s var(--ease);
}
.share-card-mask.show .share-card { transform: none; }
.share-close {
  position: absolute;
  top: 10px; right: 12px;
  width: 32px; height: 32px;
  border: none; background: transparent;
  border-radius: 50%;
  font-size: 20px; color: var(--text-3);
  cursor: pointer;
  line-height: 1;
}
.share-close:hover { background: var(--hover); color: var(--text); }
.share-title { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.share-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.8; margin-bottom: 14px; letter-spacing: 0; }
.share-desc b { color: #E0342C; }
.share-poster {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(160deg, #fff, #eef2f9);
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.share-qr { width: 118px; height: 118px; border-radius: 10px; flex-shrink: 0; }
.share-poster-title { font-size: 16px; font-weight: 800; }
.share-poster-sub { font-size: 12.5px; color: var(--text-2); margin-top: 6px; line-height: 1.6; }
.share-poster-cta { font-size: 12px; color: #E0342C; font-weight: 700; margin-top: 8px; }
.share-progress { margin-top: 12px; font-size: 12.5px; color: var(--text-2); }
.share-progress b { color: var(--text); }
.share-btns { display: flex; gap: 10px; margin-top: 14px; }
.share-btn {
  flex: 1;
  padding: 12px 0;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s var(--ease), opacity .15s var(--ease);
}
.share-btn:hover { transform: translateY(-1px); opacity: .92; }
.share-btn.dark { background: #191919; color: #fff; }
.share-btn.gray { background: #F0F0F0; color: #333; }
.share-btn:disabled { opacity: .55; cursor: default; transform: none; }
.share-note { margin-top: 10px; font-size: 11px; color: var(--text-3); letter-spacing: 0; }
.pay-channels { display: flex; flex-direction: column; gap: 10px; }
.pay-channel {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s var(--ease), background .15s var(--ease), transform .1s var(--ease);
}
.pay-channel:hover { border-color: var(--border-mid); background: var(--bg); }
.pay-channel:active { transform: scale(0.98); }
.pay-channel-ico {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff;
}
.pay-alipay { background: #1677FF; }
.pay-wechat { background: #07C160; }
.pay-channel strong { display: block; font-size: 14px; }
.pay-channel small { display: block; font-size: 12px; color: var(--text-3); margin-top: 2px; letter-spacing: 0; }
/* 简历模板选择 */
.resume-modal { max-width: 520px; }
.resume-modal { max-height: 92vh; overflow-y: auto; }
.resume-tpl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.resume-tpl-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: var(--surface);
  cursor: pointer;
  text-align: left;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.resume-tpl-card:hover { border-color: var(--border-strong); box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.resume-tpl-card.recommended { border-color: #B7D4C0; background: #FBFDFC; }
.rec-tag {
  position: absolute;
  top: -8px;
  left: 12px;
  background: #1E7B3C;
  color: #fff;
  font-size: 10.5px;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0;
}
.resume-tpl-card { position: relative; }
.rec-note {
  font-size: 13px;
  color: #2E5D3B;
  background: #F0F8F2;
  border: 1px solid #D4EAD9;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 14px;
  letter-spacing: 0;
}
.resume-tpl-preview {
  height: 52px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  margin-bottom: 10px;
}
.resume-tpl-preview .swatch { flex: 1; }
.resume-tpl-name { font-size: 14px; font-weight: 600; color: var(--text); }
.resume-tpl-desc { font-size: 12px; color: var(--text-3); letter-spacing: 0; margin-top: 2px; }

/* 模板 A4 缩略预览（iframe 加载真实模板） */
.tpl-preview-wrap {
  width: 132px;
  height: 187px;
  overflow: hidden;
  position: relative;
  border: 1px solid #EEEEEE;
  border-radius: 6px;
  background: #fff;
  margin: 0 auto 10px;
}
.tpl-preview-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tpl-preview-wrap.tpl-pages {
  width: 220px;
  height: auto;
  overflow: visible;
  display: flex;
  gap: 6px;
  justify-content: center;
  position: relative;
}
.tpl-preview-wrap.tpl-pages img {
  width: 104px;
  height: 147px;
  object-fit: cover;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
}
.tpl-pages-badge {
  position: absolute;
  top: -8px;
  right: -6px;
  background: rgba(0,0,0,.68);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}
.rv {
  width: 132px;
  height: 187px;
  aspect-ratio: 210 / 297;
  background: #FFFFFF;
  padding: 9px 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  border: 1px solid #EEEEEE;
  border-radius: 3px;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #333333;
  overflow: hidden;
  box-sizing: border-box;
  line-height: 1.35;
}
.rv-head { display: flex; gap: 8px; align-items: center; }
.rv-main { flex: 1; min-width: 0; }
.rv-name { font-size: 9px; font-weight: 700; color: var(--rv-primary, #111); text-align: center; letter-spacing: .5px; }
.rv-pos { font-size: 6px; color: #555; text-align: center; margin-top: 1px; }
.rv-contact { font-size: 4.5px; color: #888; text-align: center; margin-top: 2px; }
.rv-photo {
  width: 26px; height: 33px; flex-shrink: 0;
  border: 1px dashed var(--rv-photo, #999);
  border-radius: 1px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5px; color: var(--rv-photo, #999);
}
.rv-sec {
  font-size: 6px; font-weight: 700; color: var(--rv-primary, #111);
  border-bottom: 1px solid var(--rv-primary, #111);
  padding-bottom: 1px; margin: 6px 0 3px;
}
.rv-row { font-size: 5px; display: flex; justify-content: space-between; gap: 4px; margin-bottom: 1px; }
.rv-row b { color: var(--rv-primary, #111); font-weight: 700; }
.rv-row span { color: #777; flex-shrink: 0; }
.rv-bullet { font-size: 4.8px; color: #444; padding-left: 4px; position: relative; margin-bottom: 1px; }
.rv-bullet::before { content: '•'; position: absolute; left: 0; color: var(--rv-primary, #111); }
.rv-line { font-size: 5px; color: #444; }

/* banner 布局（深蓝横幅） */
.rv-banner .rv-head {
  background: var(--rv-banner, #0F2A4A);
  margin: -9px -10px 0;
  padding: 10px;
}
.rv-banner .rv-name, .rv-banner .rv-pos { color: #FFF; }
.rv-banner .rv-contact { color: #DDD; }
.rv-banner .rv-photo { border-color: #FFF; color: #FFF; }

/* sidebar 布局（深棕侧栏） */
.rv-sidebar { display: flex; margin: -9px -10px -9px; }
.rv-sidebar .rv-side {
  width: 30%; background: var(--rv-side, #5C3A21);
  padding: 10px 6px; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.rv-sidebar .rv-side .rv-photo { border-color: #FFF; color: #FFF; }
.rv-sidebar .rv-side .rv-side-contact { font-size: 4px; color: #DDD; text-align: center; word-break: break-all; }
.rv-sidebar .rv-body { flex: 1; padding: 9px 8px; min-width: 0; }
.rv-sidebar .rv-name { text-align: left; }
.rv-sidebar .rv-pos { text-align: left; }
.rv-sidebar .rv-photo { display: none; }

.pay-qr-wrap {
  align-self: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: #fff;
}
.pay-qr-wrap img { display: block; width: 220px; height: 220px; }
.pay-tip { font-size: 12px; color: var(--text-3); text-align: center; letter-spacing: 0; }

/* ============ 落地页动效（参照 lollipop 交互） ============ */
/* 滚动渐显 */
/* ============ 对比：普通简历 vs 职达星球 ============ */
.lp-compare {
  padding: 88px 24px;
  background: linear-gradient(to bottom, #FFFFFF 0%, var(--bg) 100%);
}
.lp-compare-head { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.lp-compare-head h2 { font-size: 34px; letter-spacing: -0.03em; font-weight: 800; line-height: 1.25; margin: 0 0 14px; }
.lp-compare-head p { font-size: 15px; color: var(--text-2); margin: 0; }
.lp-compare-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.lp-cv { min-width: 0; }
.lp-cv-inner { display: flex; gap: 18px; align-items: center; }
.lp-cv-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.lp-cv-label.bad { background: #FDECEC; color: #C0392B; }
.lp-cv-label.good { background: #E8F5EC; color: #1E7B3C; }

.lp-cv-paper {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 12px 36px rgba(0,0,0,.06);
}
.lp-cv-paper.a4 {
  width: min(290px, 100%);
  aspect-ratio: 210 / 297;
  display: flex;
  flex-direction: column;
}
.cv-head { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.cv-photo { width: 48px; height: 60px; border-radius: 4px; flex-shrink: 0; }
.cv-photo.bad { background: #EDEDED; border: 1px dashed #CCC; }
.cv-photo.good { background: #222; }
.cv-head-text { flex: 1; min-width: 0; }
.cv-name { font-size: 17px; font-weight: 700; }
.cv-name.bad { color: #888; }
.cv-name.good { color: #111; }
.cv-pos { font-size: 12px; color: #555; margin-top: 3px; }
.cv-line { height: 9px; border-radius: 99px; background: #E9E9E9; margin: 8px 0; }
.cv-line.w40 { width: 40%; }
.cv-line.w50 { width: 50%; }
.cv-line.w60 { width: 60%; }
.cv-line.w70 { width: 70%; }
.cv-line.w80 { width: 80%; }
.cv-line.w90 { width: 90%; }
.cv-line.good { background: #DDEBE1; height: 10px; }
.cv-sec { height: 13px; border-radius: 4px; margin: 14px 0 8px; }
.cv-sec.bad { background: #F0F0F0; width: 72px; }
.cv-sec.good { background: #222; width: 72px; }
.cv-two-col { display: flex; gap: 18px; }
.cv-col { flex: 1; }

.cv-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cv-notes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.75);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.cv-notes li b {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; margin-top: 1px;
}
.cv-notes.bad li b { background: #FDECEC; color: #C0392B; }
.cv-notes.good li b { background: #E8F5EC; color: #1E7B3C; }

.lp-cv-unit.in .cv-notes li { opacity: 1; transform: none; }
.lp-cv-unit.in .cv-notes li:nth-child(1) { transition-delay: .3s; }
.lp-cv-unit.in .cv-notes li:nth-child(2) { transition-delay: .5s; }
.lp-cv-unit.in .cv-notes li:nth-child(3) { transition-delay: .7s; }
.lp-cv-unit.in .cv-notes li:nth-child(4) { transition-delay: .9s; }

.lp-cv-unit.in .cv-notes.bad li { animation: cvShake .5s var(--ease); }
.lp-cv-unit.in .cv-notes.bad li:nth-child(1) { animation-delay: .3s; }
.lp-cv-unit.in .cv-notes.bad li:nth-child(2) { animation-delay: .5s; }
.lp-cv-unit.in .cv-notes.bad li:nth-child(3) { animation-delay: .7s; }
.lp-cv-unit.in .cv-notes.bad li:nth-child(4) { animation-delay: .9s; }
.lp-cv-unit.in .cv-notes.good li { animation: cvPop .5s var(--ease); }
.lp-cv-unit.in .cv-notes.good li:nth-child(1) { animation-delay: .3s; }
.lp-cv-unit.in .cv-notes.good li:nth-child(2) { animation-delay: .5s; }
.lp-cv-unit.in .cv-notes.good li:nth-child(3) { animation-delay: .7s; }
.lp-cv-unit.in .cv-notes.good li:nth-child(4) { animation-delay: .9s; }

@keyframes cvShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}
@keyframes cvPop {
  0% { transform: scale(.9); }
  60% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.lp-cv-arrow {
  display: flex; align-items: center; justify-content: center;
}
.lp-cv-arrow span {
  font-size: 34px;
  color: var(--text-2);
  animation: cvArrow 1.3s ease-in-out infinite;
}
@keyframes cvArrow {
  0%, 100% { transform: translateX(0); opacity: .45; }
  50% { transform: translateX(9px); opacity: 1; }
}

/* ============ 对比新版式：A4 并排 + 四步对比 ============ */
.lp-cv-side {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.lp-cv-block { width: min(320px, 100%); }

/* 严格 A4 纸（210:297），真实文本内容 */
.lp-cv-paper.a4 {
  width: 100%;
  aspect-ratio: 210 / 297;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  padding: 24px 26px;
  overflow: hidden;
  box-sizing: border-box;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
.lp-cv-paper.a4.bad { background: #FAFAFA; border-color: #EDEDED; }
.a4-name { font-size: 18px; font-weight: 700; text-align: center; letter-spacing: 1px; }
.lp-cv-paper.a4.bad .a4-name { color: #999; }
.lp-cv-paper.a4.good .a4-name { color: #111; }
.a4-pos { font-size: 12px; font-weight: 600; text-align: center; color: #333; margin-top: 3px; }
.a4-contact { font-size: 9px; text-align: center; color: #888; margin-top: 5px; letter-spacing: .2px; }
.a4-sec {
  font-size: 11px; font-weight: 700;
  margin: 14px 0 4px;
  padding-bottom: 2px;
  border-bottom: 1px solid;
  letter-spacing: 1px;
}
.a4-sec.bad { color: #AAA; border-color: #E0E0E0; }
.a4-sec.good { color: #111; border-color: #111; }
.a4-line { font-size: 10px; color: #555; line-height: 1.55; margin: 4px 0; }
.a4-line.bad { color: #B0B0B0; }
.a4-line.good { color: #333; }

/* 四步流程对比 */
.lp-step-compare { max-width: 960px; margin: 56px auto 0; }
.lp-step-head,
.lp-step-row {
  display: grid;
  grid-template-columns: 110px 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.lp-step-head {
  font-size: 14px;
  font-weight: 700;
  padding: 0 0 10px;
  color: var(--text-2);
}
.lp-step-head .bad { color: #C0392B; text-align: center; }
.lp-step-head .good { color: #1E7B3C; text-align: center; }
.lp-step-row { margin-bottom: 12px; }
.lp-step-num {
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  padding: 10px;
  text-align: center;
}
.lp-step-num small { font-size: 11px; font-weight: 500; margin-top: 2px; opacity: .85; }
.lp-step-cell {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.6;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.lp-step-cell b { flex-shrink: 0; }
.lp-step-cell.bad { background: #FDF3F3; color: #8C4A4A; border: 1px solid #F5DCDC; }
.lp-step-cell.good { background: #F0F8F2; color: #2E5D3B; border: 1px solid #D4EAD9; }

/* 移动端：简历堆叠、四步单列 */
@media (max-width: 767px) {
  .lp-cv-side { flex-direction: column; align-items: center; gap: 22px; }
  .lp-cv-block { width: min(300px, 100%); }
  .lp-cv-arrow { transform: rotate(90deg); }
  .lp-step-head { display: none; }
  .lp-step-row { grid-template-columns: 1fr; gap: 8px; }
  .lp-step-num { flex-direction: row; gap: 8px; padding: 8px; font-size: 18px; }
  .lp-step-num small { margin-top: 0; }
}

.lp-reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.lp-reveal.in {
  opacity: 1;
  transform: none;
}

/* 四步卡片：叠放展开（滚动进入时从堆叠态依次放大归位） */
.lp-workflow-item {
  opacity: 0;
  transform: translateY(56px) scale(0.92);
  transform-origin: center top;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.lp-workflow-item:nth-child(2) { transition-delay: .08s; }
.lp-workflow-item:nth-child(3) { transition-delay: .16s; }
.lp-workflow-item:nth-child(4) { transition-delay: .24s; }
.lp-workflow-item.in {
  opacity: 1;
  transform: none;
}

/* Hero 预览框：滚动缩放（JS 控制 transform/opacity） */
.lp-preview {
  transition: transform .25s var(--ease), opacity .25s var(--ease);
  will-change: transform, opacity;
}

/* Hero 文案滚动淡出 */
.lp-hero-copy, .lp-hero-cta {
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  will-change: opacity, transform;
}

/* 主按钮 hover：磁吸感（放大 + 阴影 + 微上浮） */
.lp-cta-primary, .lp-nav-cta, .lp-plan-btn {
  transition: background .15s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.lp-cta-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(25, 25, 25, 0.22);
}
.lp-cta-primary:active { transform: translateY(0) scale(0.98); }
.lp-nav-cta:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 8px 20px rgba(25, 25, 25, 0.18);
}
.lp-plan-btn:hover { transform: translateY(-1px) scale(1.02); }

/* 岗位卡片 hover：上浮 + 阴影 + 边框加深 */
.lp-preview-jobcard {
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.lp-preview-jobcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(25, 25, 25, 0.08);
  border-color: var(--border-mid);
}

/* 导航滚动态：加深阴影 */
.lp-nav.scrolled {
  box-shadow: 0 8px 28px rgba(25, 25, 25, 0.08);
  background: rgba(255, 255, 255, 0.85);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}

/* 故事字块 hover */
.lp-story-lead span {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.lp-story-lead:hover span {
  transform: rotate(-4deg) scale(1.06);
  box-shadow: 0 8px 20px rgba(25, 25, 25, 0.18);
}

/* FAQ 手风琴展开内容 */
.lp-faq-a { transition: max-height .28s var(--ease); }
.lp-faq-q::after { transition: transform .22s var(--ease); }

/* 会员卡 hover */
.lp-plan {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.lp-plan:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(25, 25, 25, 0.1);
}
.lp-plan.featured:hover { box-shadow: 0 20px 48px rgba(25, 25, 25, 0.16); }

/* 移动端关闭部分重动效 */
@media (prefers-reduced-motion: reduce) {
  .lp-reveal, .lp-workflow-item { transition: none; opacity: 1; transform: none; }
  .lp-preview, .lp-hero-copy, .lp-hero-cta { transition: none; }
}

/* ============ 登录弹窗 ============ */
.login-mask {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.66);
  z-index: 60;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-mask.show { display: flex; }
.login-modal {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border-radius: var(--radius-feature);
  padding: 40px 32px 28px;
  display: flex;
  flex-direction: column;
  animation: modalIn .22s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.login-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  border: none; background: transparent;
  border-radius: 50%;
  font-size: 20px; color: var(--text-3);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.login-close:hover { background: var(--hover); color: var(--text); }

.login-brand { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 40px; }
.brand-logo {
  width: 96px; height: 96px;
  object-fit: contain;
}
.brand-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.brand-sub { font-size: 13px; color: var(--text-2); text-align: center; letter-spacing: 0; }

.login-form { display: flex; flex-direction: column; gap: 14px; }
.field-label { font-size: 12px; font-weight: 600; color: var(--text-2); letter-spacing: 0; margin-bottom: -8px; }
.field-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field-input:focus { border-color: var(--border-strong); box-shadow: 0 0 0 3px var(--hover); }
.field-input::placeholder { color: var(--text-3); }
.code-row { display: flex; gap: 8px; }
.code-row .field-input { flex: 1; }
.btn-send-code {
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  border-radius: var(--radius-pill);
  padding: 0 18px;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s var(--ease);
}
.btn-send-code:hover:not(:disabled) { background: var(--hover); }
.btn-send-code:disabled { opacity: 0.5; cursor: not-allowed; }

.login-tip { font-size: 12px; color: var(--text-3); text-align: center; letter-spacing: 0; }
.login-divider { display: flex; align-items: center; gap: 12px; margin: 4px 0; color: var(--text-3); font-size: 12px; }
.login-divider::before, .login-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.login-footer { margin-top: 16px; font-size: 11px; color: var(--text-3); text-align: center; letter-spacing: 0; }
.login-agree {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12.5px; color: var(--text-2);
  margin-top: 14px; cursor: pointer;
  letter-spacing: 0;
}
.login-agree input {
  width: 15px; height: 15px;
  accent-color: #191919;
  cursor: pointer;
  flex-shrink: 0;
}
.login-agree a { color: var(--text); text-decoration: underline; }

/* 用户须知弹窗 */
.notice-modal {
  max-width: 480px;
  text-align: left;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
}
.notice-content {
  overflow-y: auto;
  padding-right: 6px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-2);
  letter-spacing: 0;
}
.notice-content h4 { font-size: 14px; font-weight: 700; color: var(--text); margin: 12px 0 4px; }
.notice-content p { margin: 0 0 8px; }
.wx-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 5px;
  background: #07C160; color: #fff; font-size: 11px; font-weight: 700;
  margin-right: 6px;
}

/* ============ 按钮 ============ */
.btn {
  border: none; cursor: pointer;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600;
  padding: 13px 22px;
  letter-spacing: -0.01em;
  transition: background .15s var(--ease), box-shadow .15s var(--ease), transform .1s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ink); color: var(--btn-text); }
.btn-primary:hover { background: #333333; }
.btn-secondary {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border-mid);
}
.btn-secondary:hover { background: var(--hover); }
.btn-ghost {
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover:not(:disabled) { background: var(--hover); color: var(--text); }
.btn-ghost:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ============ 主应用框架 ============ */
.shell {
  display: none;
  height: 100%;
  padding: 12px;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.shell.on { display: flex; }

/* 主界面动效背景：柔和光斑 + 慢速漂浮（模拟 lollipop 视频背景质感） */
.shell::before,
.shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.shell::before {
  width: 46vw; height: 46vw;
  left: -12vw; top: -14vw;
  background: radial-gradient(circle, rgba(61, 143, 232, 0.14), transparent 65%);
  animation: lpDriftA 26s ease-in-out infinite alternate;
}
.shell::after {
  width: 40vw; height: 40vw;
  right: -10vw; bottom: -12vw;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.10), transparent 65%);
  animation: lpDriftB 32s ease-in-out infinite alternate;
}
@keyframes lpDriftA {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(7vw, 6vh) scale(1.18); }
}
@keyframes lpDriftB {
  0% { transform: translate(0, 0) scale(1.1); }
  100% { transform: translate(-6vw, -5vh) scale(0.92); }
}

.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-feature);
  display: flex;
  flex-direction: column;
  padding: 12px;
  box-shadow: var(--lp-shadow-popover);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: width var(--lp-motion-duration) var(--lp-motion-easing),
    opacity var(--lp-motion-duration) var(--lp-motion-easing),
    margin-left var(--lp-motion-duration) var(--lp-motion-easing);
}
.shell.side-collapsed .sidebar {
  width: 0;
  margin-left: -12px;
  opacity: 0;
  padding-left: 0;
  padding-right: 0;
  border-color: transparent;
}
.side-toggle {
  margin-left: auto;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: none; border-radius: 10px;
  background: transparent; color: var(--text-3);
  cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease), transform .3s var(--lp-motion-easing);
}
.side-toggle:hover { background: var(--hover); color: var(--text); }
.shell.side-collapsed .side-toggle { transform: rotate(180deg); }
.side-expand {
  position: fixed;
  left: 22px;
  top: 22px;
  z-index: 20;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 8px 20px rgba(25,25,25,.1);
  color: var(--text);
  cursor: pointer;
  transition: transform .25s var(--lp-motion-easing), box-shadow .25s var(--lp-motion-easing), background .15s var(--ease);
}
.side-expand:hover { transform: scale(1.06); box-shadow: 0 12px 26px rgba(25,25,25,.14); background: rgba(255,255,255,.9); }
.sidebar-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px 16px;
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
}
.mini-logo {
  width: 30px; height: 30px;
  object-fit: contain;
  border-radius: 8px;
}
.side-nav { display: flex; flex-direction: column; gap: 2px; }
.side-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  border: none; background: transparent;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px; font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  text-align: left;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.side-item:hover { background: var(--hover); color: var(--text); }
.side-item.active { background: var(--active); color: var(--text); font-weight: 600; }
.side-icon { width: 20px; text-align: center; font-size: 13px; opacity: 0.9; }
.side-icon svg { width: 16px; height: 16px; display: block; margin: 0 auto; }
.side-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.side-name2 { font-size: 14px; font-weight: 600; line-height: 1.3; display: flex; align-items: center; gap: 6px; }
.side-desc { font-size: 11px; color: var(--text-3); font-weight: 400; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.side-hot {
  font-size: 10px; font-weight: 700; color: #fff;
  background: #E24B4B; border-radius: 999px; padding: 1px 8px; line-height: 1.5;
  animation: sideHotPulse 1.6s ease-in-out infinite;
}
.side-tag {
  font-size: 10px; font-weight: 700;
  border-radius: 999px; padding: 1px 8px; line-height: 1.5;
  white-space: nowrap;
}
.side-tag.free { color: #737373; background: rgba(25,25,25,.07); }
.side-tag.rec { color: #fff; background: #3d8fe8; }
.glass-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  border-radius: 999px; padding: 2px 8px; line-height: 1.5;
  margin-left: 6px; vertical-align: 2px; white-space: nowrap;
}
.glass-tag.free { color: #737373; background: rgba(25,25,25,.08); }
.glass-tag.rec { color: #fff; background: #3d8fe8; }
.glass-tag.hot { color: #fff; background: #E24B4B; animation: sideHotPulse 1.6s ease-in-out infinite; }
.pv-tag {
  font-style: normal; font-size: 9px; font-weight: 700;
  border-radius: 999px; padding: 1px 6px; color: #fff; line-height: 1.5;
  vertical-align: 1px;
}
.pv-tag.free { color: #737373; background: rgba(25,25,25,.08); }
.pv-tag.rec { background: #3d8fe8; }
@keyframes sideHotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226,75,75,.45); }
  50% { box-shadow: 0 0 0 5px rgba(226,75,75,0); }
}

.sidebar-user {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 8px 4px;
  border-top: 1px solid var(--border);
}

/* 侧边栏底部：联系我们 / ICP / 关于我们 */
.sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 8px 0;
}
.sidebar-footer a,
.sidebar-footer .about-link {
  font-size: 11.5px;
  color: var(--text-3);
  text-decoration: none;
  padding: 3px 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0;
}
.sidebar-footer a:hover,
.sidebar-footer .about-link:hover {
  color: var(--text);
}
.side-avatar, .drawer-avatar {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--ink); color: var(--btn-text);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
}
.side-user-info { flex: 1; min-width: 0; }
.side-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.side-sub { font-size: 11px; color: var(--text-3); letter-spacing: 0; }
.side-logout {
  border: none; background: transparent;
  color: var(--text-3); font-size: 15px;
  cursor: pointer; padding: 4px;
  border-radius: 10px;
}
.side-logout:hover { background: var(--hover); color: var(--text); }

.main {
  flex: 1;
  min-width: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-radius: var(--radius-feature);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
  transition: margin-left var(--lp-motion-duration) var(--lp-motion-easing);
}

/* 对话页工作台（lollipop 式功能入口） */
.chat-workspace {
  flex-shrink: 0;
  padding: 28px 28px 8px;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}
.ws-head { text-align: center; margin-bottom: 18px; }
.ws-title {
  font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--text);
  animation: lpFadeUp .5s var(--lp-motion-easing) both;
}
.ws-sub {
  margin-top: 8px; font-size: 14px; color: var(--text-2); letter-spacing: 0;
  animation: lpFadeUp .5s var(--lp-motion-easing) .06s both;
}
.ws-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  animation: lpFadeUp .55s var(--lp-motion-easing) .12s both;
}
.ws-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 6px;
  text-align: left; cursor: pointer;
  transition: transform .25s var(--lp-motion-easing), box-shadow .25s var(--lp-motion-easing), border-color .2s var(--ease);
}
.ws-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-card-hover);
  border-color: var(--border-strong);
}
.ws-card:active { transform: translateY(-1px) scale(.99); }
.ws-card-ico { font-size: 22px; }
.ws-card-name { font-size: 15px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 6px; }
.ws-card-desc { font-size: 12px; color: var(--text-3); line-height: 1.5; }
.ws-card-hot {
  border-color: rgba(31, 92, 77, 0.35);
  background: linear-gradient(180deg, rgba(243, 250, 247, 0.9), rgba(255, 255, 255, 0.75));
}
.ws-hot {
  font-size: 10px; font-weight: 700; color: #fff;
  background: #E24B4B; border-radius: 999px; padding: 1px 8px; line-height: 1.5;
  animation: sideHotPulse 1.6s ease-in-out infinite;
}
@keyframes lpFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 767px) {
  .chat-workspace { padding: 18px 14px 6px; }
  .ws-cards { grid-template-columns: 1fr; gap: 8px; }
  .ws-title { font-size: 20px; }
}

/* ============ 顶栏 / 页头 ============ */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  height: 48px; padding: 0 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: transparent;
}
.topbar-title { font-size: 15px; font-weight: 600; }
.topbar-title img.topbar-logo {
  width: 22px; height: 22px;
  object-fit: contain;
  vertical-align: -4px;
  margin-right: 6px;
  border-radius: 6px;
}
.icon-btn {
  width: 34px; height: 34px;
  border: none; background: transparent;
  border-radius: 12px;
  color: var(--text-2); font-size: 17px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.icon-btn:hover { background: var(--hover); color: var(--text); }

.page-head {
  display: flex; align-items: center; gap: 8px;
  padding: 20px 28px 12px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.btn-mobile-menu { display: none; }
.page-head .btn-mobile-menu { margin-left: auto; }
.btn-new-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, .6);
  color: var(--text);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.btn-new-chat:hover { background: var(--ink); border-color: var(--ink); color: var(--btn-text); }
.topbar .btn-new-chat-m { margin-left: auto; padding: 6px 10px; font-size: 12px; }
.page-title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.page-sub { font-size: 12px; color: var(--text-3); letter-spacing: 0; margin-top: 2px; }

/* ============ 对话页 ============ */
.chat-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.chat-inner {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.msg { display: flex; gap: 10px; max-width: 100%; animation: rise .22s var(--ease); }
.msg-ai { align-self: flex-start; }
.msg-user {
  align-self: flex-end;
  justify-content: flex-end;
  max-width: 85%;
}
.msg-avatar {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--ink); color: var(--btn-text);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; margin-top: 3px;
}
.msg-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.msg-user .msg-avatar {
  display: flex;
  order: 2;               /* 用户头像显示在气泡右侧 */
  background: #191919;    /* 黑色背景 */
  color: #fff;            /* 白色「我」字 */
}
.bubble {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
}
/* AI 气泡：白底；三个圆角，只有左上角（头像那一侧）是直角 */
.msg-ai .bubble {
  background: var(--surface);
  border: 1px solid rgba(25, 25, 25, .08);
  border-radius: var(--radius-lg);
  border-top-left-radius: 0;
  padding: 12px 16px;
  box-shadow: 0 6px 18px rgba(25, 25, 25, .05);
}
/* 白气泡里嵌的确认卡原本是半透明白边，在白底上会看不见，这里给它一条可见的描边 */
.msg-ai .bubble .final-check {
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: none;
}
.bubble strong { font-weight: 700; }
.bubble strong.lead {
  font-size: 17px;
  font-weight: 700;
}
/* 用户气泡：黑底白字；三个圆角，只有右上角（头像那一侧）是直角 */
.msg-user .bubble {
  max-width: 100%;
  min-width: 0;
  background: var(--user-bubble);
  color: var(--user-bubble-text);
  border-radius: var(--radius-lg);
  border-top-right-radius: 0;
  padding: 9px 14px;
  font-size: 15px;
  text-align: left;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
}
/* 黑底上的行内元素保持可读 */
.msg-user .bubble a { color: var(--user-bubble-text); text-decoration: underline; }
.msg-user .bubble code { background: rgba(255, 255, 255, .18); color: var(--user-bubble-text); }
@keyframes rise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* 气泡内排版（Notion 字号层级） */
.bubble h4 { font-size: 15px; font-weight: 700; margin: 10px 0 6px; }
.bubble h5 { font-size: 14px; font-weight: 600; margin: 8px 0 4px; }
.bubble p { margin: 5px 0; }
.bubble ul, .bubble ol { margin: 5px 0; padding-left: 22px; }
.bubble li { margin: 3px 0; }
.bubble code {
  background: var(--hover);
  border-radius: 8px;
  padding: 1px 5px;
  font-size: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.bubble pre {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.6;
  margin: 8px 0;
  white-space: pre-wrap;
}
.bubble pre code { background: none; padding: 0; }
.bubble .tag {
  display: inline-block;
  font-size: 12px; padding: 2px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 2px 5px 2px 0;
  color: var(--text-2);
  letter-spacing: 0;
  font-weight: 500;
}
.bubble .credit { font-size: 12px; color: var(--text-3); margin-top: 8px; letter-spacing: 0; }
.bubble .cite { font-size: 12px; color: var(--text-3); letter-spacing: 0; }
.bubble .divider { height: 1px; background: var(--border); margin: 12px 0; }

/* 第 12 轮信息确认卡片 */
.final-check {
  background: linear-gradient(150deg, rgba(255,255,255,.72), rgba(255,255,255,.42));
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 18px;
  padding: 16px 18px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(25,25,25,.06);
}
.final-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.final-row { display: flex; gap: 10px; font-size: 13.5px; line-height: 1.8; }
.final-row b { flex-shrink: 0; width: 76px; color: var(--text-2); font-weight: 600; }
.final-tip { margin-top: 12px; font-size: 13px; color: var(--text-2); line-height: 1.8; }
.final-empty { font-size: 13px; color: var(--text-2); line-height: 1.8; }

/* 目标确认卡片的按钮（锁公司 + 岗位 / 说错了重来） */
.target-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

/* ===== 拼团（会员页按钮 + 团状态面板） ===== */
.plan-group { margin: 12px 0 4px; display: flex; flex-wrap: wrap; gap: 8px; }
.plan-group-main,
.plan-group-sub {
  flex: 1 1 auto;
  min-width: 150px;
  border-radius: 999px;
  border: 1px solid var(--border-strong, #dcdcdc);
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s var(--ease, ease), color .15s var(--ease, ease);
}
.plan-group-main { background: var(--ink, #191919); color: #fff; border-color: var(--ink, #191919); }
.plan-group-main:hover { opacity: .9; }
.plan-group-sub { background: var(--surface, #fff); color: var(--text, #191919); }
.plan-group-sub:hover { background: var(--hover, rgba(0,0,0,.04)); }
.plan-group-tip { flex: 1 1 100%; margin: 2px 0 0; font-size: 12px; line-height: 1.7; color: var(--text-3, #999); }
.plan-group-rules {
  flex: 1 1 100%;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px dashed var(--border, #e6e6e6);
  border-radius: 12px;
  background: var(--hover, rgba(0,0,0,.02));
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-2, #666);
}
.plan-group-rules b { display: block; margin-bottom: 4px; color: var(--text, #191919); font-size: 12.5px; }
.plan-group-rules ul { margin: 0; padding-left: 16px; }
.plan-group-rules li { margin: 2px 0; }
.plan-group-rules strong { color: var(--text, #191919); }

.pricing-group-banner {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  border: 1px solid rgba(21,156,88,.28);
  background: rgba(21,156,88,.07);
  border-radius: 14px; padding: 10px 14px; margin-bottom: 14px; font-size: 13px;
}
.pricing-group-banner b { color: #159c58; }
.pricing-group-banner span { color: var(--text-2, #555); flex: 1 1 auto; }

.gp-card { max-width: 420px; text-align: left; }
.gp-price { font-size: 12.5px; color: var(--text-3, #999); margin-top: 4px; }
.gp-count { font-size: 15px; font-weight: 600; margin: 14px 0 6px; }
.gp-count b { font-size: 22px; }
.gp-timer { font-size: 13px; color: #E0342C; margin-bottom: 10px; }
.gp-link {
  font-size: 12px; color: var(--text-3, #999); background: var(--hover, rgba(0,0,0,.04));
  border-radius: 8px; padding: 8px 10px; word-break: break-all; line-height: 1.6; max-height: 64px; overflow: auto;
}
.gp-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 4px; }
.gp-note { font-size: 12.5px; line-height: 1.8; color: var(--text-3, #999); margin: 8px 0 0; }
.gp-members { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.gp-member {
  font-size: 12px; padding: 5px 10px; border-radius: 999px;
  border: 1px dashed var(--border, #e3e3e3); color: var(--text-3, #999);
}
.gp-member.paid { border-style: solid; border-color: rgba(21,156,88,.5); color: #159c58; background: rgba(21,156,88,.07); }

/* 绑定邮箱弹窗 */
.bind-card { max-width: 400px; text-align: left; }
.bind-row { margin-top: 10px; }
.bind-row input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border-strong, #dcdcdc);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  background: var(--surface, #fff);
  color: var(--text, #191919);
}
.bind-row input:focus { outline: none; border-color: var(--text-3, #999); }
.bind-code-row { display: flex; gap: 8px; align-items: center; }
.bind-code-row input { flex: 1 1 auto; }
.bind-code-row button { flex: 0 0 auto; white-space: nowrap; }

/* 确认卡里展示的 JD（岗位介绍）预览 */
.final-jd {
  margin: 10px 0 4px;
  padding: 10px 12px;
  border-left: 3px solid var(--border-strong, #d8d8d8);
  background: var(--hover, rgba(0, 0, 0, .03));
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-2);
  white-space: pre-wrap;
  max-height: 220px;
  overflow: auto;
}

/* 报告页顶部：这份报告是为哪家公司的哪个岗位做的 */
.report-target-bar {
  margin: 0 0 14px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-2, rgba(255,255,255,.6));
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-2);
}
.report-target-bar b { color: var(--text); }

/* 页面内轻提示（替代原生 alert 的反馈类提示） */
.toast-box {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.toast-item {
  max-width: 78vw;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(25, 25, 25, .92);
  color: #fff;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: 0 10px 26px rgba(25, 25, 25, .18);
  opacity: 0;
  transform: translateY(6px);
  animation: toastIn .22s var(--ease, ease) forwards;
}
.toast-item.out { animation: toastOut .3s var(--ease, ease) forwards; }
@keyframes toastIn { to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(6px); } }

/* 思考过程（折叠展示，默认收起） */
.thinking-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(55, 53, 47, 0.03);
  padding: 8px 12px;
  margin-bottom: 10px;
}
.thinking-box summary {
  cursor: pointer;
  font-size: 12.5px;
  color: var(--text-2);
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.thinking-box summary::-webkit-details-marker { display: none; }
.thinking-box summary::after {
  content: '▸';
  margin-left: auto;
  font-size: 11px;
  transition: transform .18s var(--ease);
}
.thinking-box[open] summary::after { transform: rotate(90deg); }
.thinking-body {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}
.thinking-step {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.8;
  display: flex;
  gap: 6px;
}
.thinking-step.done {
  opacity: .65;
}
.thinking-step.current {
  color: var(--text-1);
  font-weight: 500;
}
.thinking-step.current .thinking-spinner {
  margin-right: 0;
}
.thinking-spinner {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 6px;
  border: 2px solid var(--border);
  border-top-color: var(--text-2);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: -2px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* 对比卡片 */
.compare-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  margin: 8px 0;
  background: var(--surface);
}
.compare-card .label { font-size: 11px; color: var(--text-3); font-weight: 600; margin-bottom: 2px; letter-spacing: 0; }
.compare-card .old { font-size: 14px; color: var(--text-2); }
.compare-card .old-text { text-decoration: line-through; }
.compare-card .new { font-size: 14px; color: var(--text); font-weight: 500; margin-top: 4px; }
.compare-card .meta { font-size: 12px; color: var(--text-3); margin-top: 6px; letter-spacing: 0; }

/* 输入区 */
.composer {
  flex-shrink: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 20px 14px;
}
.composer-inner {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}
.quick-actions {
  display: flex; gap: 8px;
  overflow-x: auto;
  padding: 0 0 10px;
  scrollbar-width: none;
}
.quick-actions::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  letter-spacing: 0;
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.chip:hover { background: var(--hover); color: var(--text); border-color: var(--border-strong); }
.chip:disabled { opacity: 0.45; cursor: not-allowed; }

.input-box {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 8px 10px 8px 22px;
  background: var(--surface);
  transition: box-shadow .15s var(--ease), border-color .15s var(--ease);
}
.input-box:focus-within { border-color: var(--text-3); box-shadow: 0 0 0 3px var(--hover); }
.input-box textarea {
  flex: 1;
  max-height: 120px;
  resize: none;
  border: none;
  background: transparent;
  padding: 7px 0;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  line-height: 1.5;
}
.input-box textarea::placeholder { color: var(--text-3); }
.attach-btn {
  border: none; background: transparent;
  color: var(--text-2);
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 0;
}
.attach-btn:hover { background: var(--hover); color: var(--text); }
.attach-btn svg { display: block; }
.btn-send {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--ink); color: var(--btn-text);
  border: none; font-size: 15px;
  cursor: pointer;
  transition: background .15s var(--ease), transform .1s var(--ease);
}
.btn-send:hover { background: #333333; }
.btn-send:active { transform: scale(0.94); }
.btn-send:disabled { opacity: 0.4; cursor: not-allowed; }

.status-bar {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  letter-spacing: 0;
  min-height: 16px;
}
.status-bar button {
  border: none; background: none;
  color: var(--text);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

/* 上传文件提示条 */
.file-banner {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-2);
}
.file-banner .fname { font-weight: 600; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-banner .fclose { margin-left: auto; border: none; background: none; color: var(--text-3); cursor: pointer; font-size: 14px; }

/* ============ 通用滚动区 ============ */
.page-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px 32px;
}
.page-inner {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}
/* 会员页：突破 680px 限制，横向拉长填满可用宽度 */
#pricing-body .page-inner {
  max-width: 1400px;
}

/* ============ 历史记录 ============ */
.record-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 16px 18px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background .15s var(--ease), border-color .15s var(--ease);
}
.record-item:hover { background: var(--bg); border-color: var(--border-strong); }
.record-main { flex: 1; min-width: 0; cursor: pointer; }
.record-title { font-size: 14px; font-weight: 600; }
.record-sub { font-size: 12px; color: var(--text-3); margin-top: 3px; letter-spacing: 0; }
.record-resume-btn {
  flex-shrink: 0;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
}

/* 用户档案 */
.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  margin-bottom: 12px;
}
.profile-card h4 { font-size: 15px; font-weight: 700; margin: 0 0 12px; }
.profile-row {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.profile-row:last-child { border-bottom: none; }
.profile-row span { color: var(--text-3); width: 72px; flex-shrink: 0; }
.profile-row b { color: var(--text); font-weight: 500; word-break: break-all; }
.profile-report { padding: 10px 0; border-bottom: 1px solid var(--border); }
.profile-report:last-child { border-bottom: none; }
.profile-report-title { font-size: 14px; font-weight: 600; }
.profile-report-meta { font-size: 12px; color: var(--text-3); margin-top: 3px; letter-spacing: 0; }
.profile-empty { color: var(--text-3); font-size: 13px; line-height: 1.7; margin: 0; }
.school-auth { position: relative; margin-top: 4px; }
.school-auth input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}
.school-auth input:focus { border-color: var(--accent); }
.school-suggest {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 30;
  max-height: 220px;
  overflow-y: auto;
}
.school-suggest-item {
  padding: 10px 12px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.school-suggest-item:last-child { border-bottom: none; }
.school-suggest-item:hover { background: var(--hover); color: var(--accent); }
.school-auth-note { font-size: 12px; color: var(--text-3); line-height: 1.6; margin-top: 10px; }

/* 微信端引导 */
.wx-guide {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.35);
}
.wx-guide.show { display: block; }
.wx-guide-arrow {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.22);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
}
.wx-guide-arrow::after { content: '···'; }
.wx-guide-arrow::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 50%;
  width: 2px;
  height: 40px;
  background: #fff;
  transform: translateX(50%);
}
.wx-guide-bubble {
  position: absolute;
  top: 92px;
  right: 16px;
  left: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 14px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.wx-guide-bubble::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 26px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
}
.wx-guide-bubble b { font-size: 16px; color: var(--text); }
.wx-guide-bubble p { font-size: 13px; color: var(--text-2); margin: 8px 0 0; line-height: 1.6; }
.wx-guide-note { color: #B8860B !important; font-size: 12px !important; }
.wx-guide-bubble button {
  margin-top: 14px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 9px 30px;
  font-size: 14px;
  cursor: pointer;
}
.record-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--text-3);
  font-size: 14px;
}
.records-tip {
  background: #F0F8F2;
  border: 1px solid #D4EAD9;
  color: #2E5D3B;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.record-empty .big { font-size: 34px; margin-bottom: 10px; opacity: 0.5; }

/* ============ 模板页 ============ */
.template-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 22px;
  margin-bottom: 12px;
}
.template-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.template-card .tpl-desc { font-size: 13px; color: var(--text-2); }
.template-card pre {
  margin-top: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  font-size: 12.5px;
  line-height: 1.7;
  overflow-x: auto;
  white-space: pre-wrap;
  font-family: var(--font-sans);
  color: var(--text);
}

/* ============ 付费页 ============ */
.pricing-hero { text-align: center; padding: 4px 0 20px; }
.pricing-hero h3 { font-size: 18px; font-weight: 700; }
.pricing-hero p { font-size: 13px; color: var(--text-2); margin-top: 4px; letter-spacing: 0; }
.plan-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: stretch; }
.plan-list { max-width: 1400px; margin: 0 auto; gap: 10px; }
.pricing-keypoints {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  max-width: 1400px; margin: 0 auto 12px;
}
.pk {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 12px 14px; display: flex; flex-direction: column; gap: 3px;
}
.pk b { font-size: 14px; color: var(--text); }
.pk span { font-size: 12px; color: var(--text-3); line-height: 1.5; }
.pk.pk-hot {
  border-color: #1F5C4D;
  background: linear-gradient(180deg, #F3FAF7 0%, var(--surface) 70%);
}
.pk.pk-hot b { color: #1F5C4D; }
.pk.pk-yellow {
  border-color: rgba(245,166,35,.4);
  background: linear-gradient(180deg, #FEF6E7 0%, var(--surface) 72%);
}
.pk.pk-yellow b { color: #B97A0E; }
.pk.pk-blue {
  border-color: rgba(61,143,232,.4);
  background: linear-gradient(180deg, #EAF3FE 0%, var(--surface) 72%);
}
.pk.pk-blue b { color: #1B6FC4; }
.plan-list + * { margin-top: 16px; }
@media (max-width: 900px) {
  .plan-list { grid-template-columns: 1fr; }
  .pricing-keypoints { grid-template-columns: 1fr; }
}
.plan-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.plan-card:hover { border-color: var(--border-strong); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.plan-card.featured {
  border: 2px solid var(--ink);
  background: linear-gradient(180deg, #F5F8FC 0%, var(--surface) 62%);
  box-shadow: none;
}
.plan-badge {
  position: absolute;
  top: -10px;
  left: 18px;
  background: var(--ink);
  color: var(--btn-text);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: 0;
}
.pricing-title {
  font-size: clamp(60px, 8vw, 84px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  line-height: 1.1;
}
.pricing-lines {
  margin: 6px auto 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.pricing-line {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}
.pricing-line .pl-ch {
  display: inline-block;
  opacity: 0;
  transform: scale(.2);
  animation: plSpread .3s ease-out forwards;
}
/* 新用户特惠倒计时 */
.offer-timer {
  max-width: 700px;
  margin: 0 auto 18px;
  padding: 9px 16px;
  text-align: center;
  font-size: 13px;
  color: #E0342C;
  font-weight: 600;
  background: rgba(224, 52, 44, .06);
  border: 1px solid rgba(224, 52, 44, .28);
  border-radius: 999px;
  letter-spacing: 0;
}
.offer-timer b {
  font-size: 15px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.pricing-mem {
  max-width: 700px;
  margin: 0 auto 12px;
  padding: 8px 16px;
  text-align: center;
  font-size: 13px;
  color: #159c58;
  font-weight: 600;
  background: rgba(21, 156, 88, .07);
  border: 1px solid rgba(21, 156, 88, .3);
  border-radius: 999px;
  letter-spacing: 0;
}
.pricing-mem b { font-weight: 800; }
.offer-share {
  max-width: 700px;
  margin: 0 auto 18px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--text);
  background: #FFF8E6;
  border: 1px solid #F2D488;
  border-radius: 16px;
  letter-spacing: 0;
}
.offer-share b { color: #E0342C; }
.offer-end {
  max-width: 700px;
  margin: 0 auto 18px;
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0;
}
@keyframes plSpread {
  to { opacity: 1; transform: scale(1); }
}
@media (max-width: 767px) {
  .pricing-title { font-size: 44px; }
  .pricing-line { font-size: 22px; white-space: normal; }
}
.plan-head { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
.plan-name-row { display: flex; align-items: center; gap: 8px; }
.plan-name { font-size: 17px; font-weight: 700; }
.plan-term {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, .7);
  padding: 1px 7px;
  border-radius: 999px;
  letter-spacing: 0;
  white-space: nowrap;
}
.plan-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.plan-price { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.plan-price small { font-size: 18px; font-weight: 500; color: var(--text-2); }
.plan-tag {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 700;
  color: #E0342C;
  border: 1px solid rgba(224, 52, 44, .35);
  background: rgba(224, 52, 44, .06);
  padding: 1px 7px;
  border-radius: 999px;
  letter-spacing: 0;
  white-space: nowrap;
}
.plan-orig {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-3);
  text-decoration: line-through;
}
.plan-head-btn {
  border: 1px solid var(--border-mid);
  background: #fff;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  margin-left: auto;
  transition: all .15s var(--ease);
}
.plan-head-btn:hover { border-color: var(--text); }
.plan-head-btn.dark {
  background: #191919;
  color: #fff;
  border-color: #191919;
}
.plan-head-btn.dark:hover { background: #333; }
.plan-desc { font-size: 13px; color: var(--text-2); letter-spacing: 0; }
.plan-card.featured .plan-desc { color: var(--text); }
.plan-tip {
  margin-top: 10px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-2);
  background: var(--bg);
  border-radius: var(--radius);
  letter-spacing: 0;
}
.plan-bullets { list-style: none; padding: 0; font-size: 13px; color: var(--text-2); }
.plan-bullets li { padding: 2px 0; }
.plan-bullets li::before { content: "✓  "; color: var(--text); font-weight: 700; }
.plan-assist {
  margin: 12px 0 14px;
  border: 1px solid rgba(0, 140, 255, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(0,140,255,.08), rgba(255,255,255,.6));
}
.plan-assist-title { font-size: 13px; font-weight: 700; color: #0057B8; margin-bottom: 6px; }
.plan-assist p { font-size: 12px; color: var(--text-2); line-height: 1.7; margin: 0 0 4px; }
.plan-assist b { color: #003B7A; }
.plan-assist-note {
  display: inline-block; margin-top: 4px; font-size: 12px; font-weight: 800;
  color: #fff; background: #191919; border-radius: 999px; padding: 2px 10px;
}

/* ============ 报告页 ============ */
.report-one-per {
  font-size: 19px;
  font-weight: 800;
  color: #E0342C;
  text-align: center;
  line-height: 1.7;
  border: 2px solid rgba(224, 52, 44, .28);
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 16px;
  background: rgba(224, 52, 44, .05);
}
.report-one-per p { margin: 0; }
.report-one-per p + p { margin-top: 8px; }
.report-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 22px;
  margin-bottom: 12px;
}
.report-block h3 {
  font-size: 15px; font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.report-tr-line { margin: 0 0 8px; font-size: 13px; line-height: 1.7; color: var(--text-2); }
.report-tr-line b { color: var(--text); }
.report-tr-time { color: var(--text-3); font-size: 12px; margin-right: 6px; }
.report-block p { font-size: 14px; color: var(--text); margin: 6px 0; }
.report-block .sub { font-size: 12.5px; color: var(--text-2); }
.report-footer {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 12px;
}

.report-saved-tip {
  margin: 14px 0;
  padding: 10px 14px;
  border: 1px solid #D6E4D8;
  border-radius: var(--radius-lg);
  background: #F2F8F3;
  font-size: 13px;
  color: #2F6B3A;
  line-height: 1.7;
}
.report-actions { display: flex; gap: 10px; margin-top: 16px; }
.report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 8px 0;
}
.report-table th, .report-table td {
  border: 1px solid var(--border);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
.report-table th {
  background: var(--bg);
  font-weight: 600;
  font-size: 12px;
  color: var(--text-2);
}
.report-table td { font-size: 13px; }

/* ============ 移动端 ============ */
.mobile-only { display: none; }

.tabbar {
  display: none;
  height: 56px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
}
.tab-item {
  flex: 1;
  border: none; background: transparent;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  font-size: 10px;
  color: var(--text-3);
  cursor: pointer;
  letter-spacing: 0;
}
.tab-item .tab-icon { font-size: 17px; }
.tab-item.active { color: var(--ink); font-weight: 600; }

.drawer-mask {
  display: none;
  position: fixed; inset: 0;
  background: rgba(25, 25, 25, 0.4);
  z-index: 40;
}
.drawer-mask.show { display: block; }
.drawer {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(280px, 78vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 50;
  padding: 24px 16px;
  transform: translateX(100%);
  transition: transform .22s var(--ease);
}
.drawer.show { transform: none; }
.drawer-head { display: flex; align-items: center; gap: 12px; padding: 0 8px 20px; border-bottom: 1px solid var(--border); }
.drawer-avatar { width: 42px; height: 42px; font-size: 16px; }
.drawer-name { font-size: 15px; font-weight: 600; }
.drawer-sub { font-size: 12px; color: var(--text-3); letter-spacing: 0; }
.drawer-item {
  display: flex; align-items: center; gap: 10px;
  border: none; background: transparent;
  padding: 12px 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  border-radius: 12px;
}
.drawer-item:hover { background: var(--hover); }
.drawer-item.danger { color: #c0392b; margin-top: auto; }
.drawer-item span svg { width: 16px; height: 16px; display: block; }

/* ============ 模拟面试 ============ */
.interview-setup .form-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px; max-width: 520px; margin: 0 auto;
}
.interview-balance {
  text-align: center; font-size: 13px; font-weight: 600;
  color: #1F5C4D; margin: 0 auto 14px; max-width: 520px;
}
.interview-balance.trial {
  color: #B8860B;
  background: rgba(184, 134, 11, .08);
  border: 1px dashed rgba(184, 134, 11, .45);
  border-radius: 12px;
  padding: 10px 14px;
  line-height: 1.7;
}
.interview-balance.trial small { color: #8a6d1f; font-size: 12px; font-weight: 400; }
.iv-locked-row { justify-content: center; }
.iv-locked-row .iv-option {
  max-width: 300px;
  pointer-events: none;
  border-color: rgba(31, 92, 77, .65);
  background: rgba(31, 92, 77, .10);
  color: var(--text);
}
.iv-locked-row .iv-option small { color: var(--text-3); }
.form-card label { display: block; font-size: 13px; font-weight: 600; margin: 12px 0 6px; color: var(--text-2); }
.form-card select, .form-card input {
  width: 100%; border: 1px solid var(--border-strong); border-radius: 12px;
  padding: 10px 12px; font-size: 14px; font-family: inherit; background: var(--surface); outline: none;
}
.form-card select:focus, .form-card input:focus { border-color: var(--text); }
.iv-option-row { display: flex; gap: 8px; }
.iv-option {
  flex: 1; border: 1px solid var(--border-strong); border-radius: 12px; background: var(--surface);
  padding: 10px 8px; font-size: 13px; font-weight: 600; font-family: inherit; color: var(--text-2);
  cursor: pointer; line-height: 1.5; text-align: center;
}
.iv-option small { display: block; font-size: 11px; font-weight: 400; color: var(--text-3); margin-top: 2px; }
.iv-option.active {
  border-color: var(--text); color: var(--text); background: rgba(0,0,0,.04);
  box-shadow: inset 0 0 0 1px var(--text);
}
.interview-chat-wrap { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.interview-progress {
  text-align: center; font-size: 13px; font-weight: 600; color: var(--text-2);
  padding: 12px 16px 4px; flex-shrink: 0;
}
.iv-video-stage {
  position: relative;
  max-width: 760px; width: 100%; margin: 10px auto 0;
  border-radius: 18px; overflow: hidden;
  background: #10141c;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iv-video-ai { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.iv-ai-avatar { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.iv-ai-head svg { border-radius: 50%; background: #1c2331; display: block; }
.iv-ai-figure {
  animation: ivBreathe 4.2s ease-in-out infinite;
  transform-origin: 50% 90%;
}
@keyframes ivBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.018); }
}
.iv-ai-figure .iv-eye { animation: ivBlink 4.5s infinite; transform-origin: 50% 60%; }
@keyframes ivBlink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.08); }
}
.iv-ai-figure.talking .iv-lip-fill { animation: ivTalkLip .4s ease-in-out infinite; }
@keyframes ivTalkLip {
  0%, 100% { transform: scaleY(.55); transform-origin: 50% 100%; }
  50% { transform: scaleY(1.25); transform-origin: 50% 100%; }
}
.iv-ai-figure.talking .iv-lip-line { opacity: .25; }
.iv-ai-mouth {
  width: 64px; height: 18px; margin-top: 2px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.iv-ai-mouth i {
  width: 6px; height: 4px; border-radius: 4px; background: #e8ecf4;
  transition: height .12s ease;
}
.iv-ai-mouth.talking i { height: 14px; }
.iv-ai-mouth.talking i:nth-child(1) { animation: ivMouth .45s ease-in-out infinite; }
.iv-ai-mouth.talking i:nth-child(2) { animation: ivMouth .45s ease-in-out .12s infinite; }
.iv-ai-mouth.talking i:nth-child(3) { animation: ivMouth .45s ease-in-out .24s infinite; }
@keyframes ivMouth {
  0%, 100% { height: 4px; }
  50% { height: 15px; }
}
.iv-ai-badge {
  font-size: 12px; color: #c7d0e0; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 3px 12px;
}
.iv-ai-question {
  max-width: 86%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: 12px 16px;
  color: #f2f5fa; font-size: 15px; line-height: 1.7; text-align: center;
  backdrop-filter: blur(4px);
}
.iv-video-local {
  position: absolute; right: 12px; bottom: 12px;
  width: 150px; aspect-ratio: 4/3;
  border-radius: 12px; overflow: hidden;
  background: #1c2331;
  border: 1px solid rgba(255,255,255,.18);
}
.iv-video-local video { width: 100%; height: 100%; object-fit: cover; display: none; transform: scaleX(-1); }
.iv-cam-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; color: #aab4c6; font-size: 12px; text-align: center; padding: 6px;
}
.iv-cam-placeholder small { color: #7d8799; line-height: 1.5; }
.iv-cam-controls { display: flex; justify-content: center; margin-top: 8px; }

/* 自定义面试官形象 */
.iv-avatar-pick {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.iv-avatar-prev {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.iv-avatar-prev img { width: 100%; height: 100%; object-fit: cover; }
.iv-avatar-empty { font-size: 11px; color: var(--text-3); text-align: center; line-height: 1.4; }
.iv-avatar-btns { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.iv-avatar-btns .btn { padding: 8px 14px; font-size: 13px; border-radius: 999px; }
.iv-avatar-hint { font-size: 11px; color: var(--text-3); line-height: 1.5; }
.iv-custom-avatar {
  width: 180px; height: 205px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* 面试辅助（实时提词器） */
.assist-wrap { max-width: 620px; margin: 0 auto; }
.assist-guide {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 14px 16px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 8px;
}
.assist-guide-step { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.assist-guide-step b {
  display: inline-block; width: 20px; height: 20px; line-height: 20px; text-align: center;
  border-radius: 50%; background: #1F5C4D; color: #fff; font-size: 11px; margin-right: 6px;
}
.assist-btns { display: flex; gap: 10px; margin-top: 14px; }
.assist-btns .btn { flex: 1; }
.assist-bank-state {
  font-size: 12px;
  color: var(--text-3);
  margin: 8px 0 0;
  min-height: 16px;
}
.assist-bank-state.ready { color: #1F9D63; font-weight: 600; }
.assist-bank-state.error { color: #E0342C; }
.assist-bank-state.working,
.assist-bank-state.generating,
.assist-bank-state.queued { color: #B8860B; }
.assist-speaker {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #cdb8ff;
  background: rgba(109, 85, 230, .22);
  border: 1px solid rgba(109, 85, 230, .5);
  border-radius: 999px;
  letter-spacing: 0;
}
.assist-live {
  margin: 14px 0; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 14px 16px; background: #10141c; color: #e8ecf4;
}
.assist-status { font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.assist-subtitle {
  font-size: 14px; line-height: 1.7; color: #b9c2d4; min-height: 24px;
  border-left: 3px solid #4f8cff; padding-left: 10px;
}
.assist-rounds { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.assist-report-bar { margin-top: 18px; text-align: center; }
.assist-report-hint { font-size: 12px; color: var(--text-3); margin-top: 8px; line-height: 1.6; }
.assist-round {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 14px 16px; display: flex; flex-direction: column; gap: 8px;
}
.assist-q { font-size: 14px; font-weight: 600; color: var(--text); }
.assist-head { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.assist-head b { color: #1F5C4D; }
.assist-head-text { font-weight: 700; color: var(--text); }
.assist-full { font-size: 13px; color: var(--text-2); line-height: 1.75; }
.assist-full b { color: var(--text-3); }
.assist-answer-box {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.assist-answer-box b { font-size: 12px; color: var(--text-3); font-weight: 600; }
.assist-answer-row { display: flex; gap: 8px; align-items: flex-start; }
.assist-answer-input {
  flex: 1;
  font-size: 13px;
  font-family: inherit;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 8px 10px;
  resize: none;
  outline: none;
  background: var(--surface);
}
.assist-answer-input:focus { border-color: var(--text); }
.assist-answer-voice { flex-shrink: 0; }
.assist-answer-save { align-self: flex-start; }

/* ============ 面试辅助 v2：直播界面（提词卡 + 左右对话气泡） ============ */
.page-scroll.al2-live { padding: 0 !important; overflow: hidden !important; }
.al2-page {
  height: 100%;
  box-sizing: border-box;
  padding: 12px 18px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto;
  min-height: 0;
}
.al2-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}
.al2-meta { font-size: 13px; color: var(--text-2); font-weight: 600; }
.al2-head-btns { display: flex; gap: 8px; }
.al2-btn {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
}
.al2-btn.ghost { background: transparent; }
.al2-btn:disabled { opacity: .55; cursor: not-allowed; }

.al2-tip {
  flex: 0 0 auto;
  min-height: 190px;
  max-height: 55%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(109, 85, 230, .42);
  border-radius: 18px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(109, 85, 230, .20), rgba(88, 161, 255, .12)), #10141c;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
}
.al2-tip-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex: 0 0 auto; }
.al2-tip-title { font-size: 14px; font-weight: 800; color: #fff; }
.al2-tip-refnote { flex: 0 0 auto; font-size: 11.5px; color: #93a0b8; line-height: 1.6; margin-top: 6px; }
.al2-tip-phase { font-size: 12px; color: #b9c2d4; margin-left: auto; }
.al2-tip-pause {
  font-size: 11px; color: #cdb8ff; cursor: pointer; user-select: none;
  border: 1px solid rgba(109, 85, 230, .5); border-radius: 999px; padding: 2px 10px;
}
.al2-tip-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.al2-tip-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 2px 2px;
}
.al2-tip-headtxt {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
  margin: 0;
}
.al2-tip-fulltxt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #e6eaf4;
  white-space: pre-wrap;
  word-break: break-word;
}
.al2-tip-empty { color: #707990; font-size: 13px; text-align: center; padding: 18px 6px; }
.al2-tip-ask {
  font-size: 17px;
  line-height: 1.8;
  color: #e8ecf4;
  margin: 0;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(140, 150, 180, .35);
  border-radius: 12px;
}
.al2-tip-ask + .al2-tip-ask { margin-top: 6px; }

.al2-chat {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 2px 4px;
}
.al2-row { display: flex; justify-content: flex-start; }
.al2-row.me { justify-content: flex-end; }
.al2-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
}
.al2-bubble.hr {
  background: #1b2233;
  border: 1px solid #303a55;
  color: #dbe2f0;
  border-bottom-left-radius: 4px;
}
.al2-bubble.me {
  background: linear-gradient(135deg, #6d55e6, #7d4fd6);
  color: #fff;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.al2-who { display: block; font-size: 11px; opacity: .72; margin-bottom: 4px; font-weight: 600; }
.al2-who .al2-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: 1px;
}
.al2-bubble.hr .al2-dot { background: #6ea8ff; box-shadow: 0 0 0 3px rgba(110,168,255,.18); }
.al2-bubble.me .al2-dot { background: #ffe08a; box-shadow: 0 0 0 3px rgba(255,224,138,.2); }
.al2-bubble.partial {
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(140,150,180,.5);
  color: #9aa4bd;
  border-radius: 14px;
}
.al2-bubble.partial .al2-dot { background: #9aa4bd; animation: iv3Pulse 1.4s ease-in-out infinite; }

.al2-foot {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 6px;
}
.al2-foot-status { font-size: 12px; color: var(--text-3); }
.al2-mic {
  border: none;
  border-radius: 999px;
  padding: 11px 28px;
  background: #191919;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
}
.al2-mic.stop { background: #E0342C; }

@media (max-width: 720px) {
  .al2-page { padding: 10px 12px 8px; gap: 8px; }
  .al2-tip { min-height: 150px; max-height: 52%; padding: 10px 12px; }
  .al2-tip-headtxt { font-size: 21px; }
  .al2-tip-fulltxt { font-size: 16px; }
  .al2-bubble { max-width: 86%; }
}
.btn-sm { padding: 6px 12px; font-size: 12px; }
.assist-lock {
  max-width: 440px; margin: 40px auto; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.assist-lock-icon { font-size: 40px; margin-bottom: 10px; }
.assist-lock h3 { font-size: 18px; margin-bottom: 10px; }
.assist-lock p { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 10px; }
.assist-lock-note {
  display: inline-block; font-size: 11px; font-weight: 700; color: #fff;
  background: #1F5C4D; border-radius: 999px; padding: 4px 12px; margin-bottom: 16px;
}
.interview-chat {
  flex: 1; overflow-y: auto; padding: 16px 20px; display: flex; flex-direction: column; gap: 16px;
  max-width: 760px; width: 100%; margin: 0 auto;
}
.interview-composer { flex-shrink: 0; padding: 12px 20px 20px; max-width: 760px; width: 100%; margin: 0 auto; }
.interview-composer textarea {
  width: 100%; border: 1px solid var(--border-strong); border-radius: 14px; padding: 12px 14px;
  font-size: 15px; font-family: inherit; resize: none; outline: none; background: var(--surface);
}
.interview-composer textarea:focus { border-color: var(--text); }
.iv-voice-bar {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap;
}
.iv-voice-bar .btn { padding: 8px 14px; font-size: 13px; border-radius: 999px; }
.iv-voice-hint { font-size: 12px; color: var(--text-3); flex: 1; min-width: 180px; line-height: 1.5; }
.interview-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 10px; }

/* 历史记录：面试徽标 + 操作按钮 */
.record-kind {
  display: inline-block; margin-left: 8px; font-size: 11px; font-weight: 600;
  background: rgba(58,123,213,.12); color: #2A6FBB; border-radius: 999px; padding: 2px 8px; vertical-align: middle;
}
.record-kind-iv { background: rgba(61,143,232,.12); color: #1B6FC4; }
.record-kind-assist { background: rgba(226,75,75,.1); color: #C23737; }
.records-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.records-tab {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s var(--ease);
}
.records-tab:hover { color: var(--text); border-color: var(--text); }
.records-tab.active {
  background: #191919;
  color: #fff;
  border-color: #191919;
}
.record-actions { flex-shrink: 0; }
.record-del { color: #C0392B !important; }
.record-del:hover { border-color: rgba(192, 57, 43, .45) !important; background: rgba(192, 57, 43, .06) !important; }

/* 编辑器 / 面试 移动端 */
@media (max-width: 767px) {
  .editor-head { padding: 12px 14px 10px; }
  .editor-tools { width: 100%; margin-left: 0; }
  .editor-body { flex-direction: column; padding: 12px 12px 20px; }
  .editor-forms { width: 100%; min-width: 0; max-width: none; padding-right: 0; }
  .editor-preview { padding: 12px; }
  .editor-grid, .editor-item-grid { grid-template-columns: 1fr; }
  .interview-chat { padding: 14px 12px; }
  .interview-composer { padding: 10px 12px 16px; }
}

/* ============ 响应式 ============ */
@media (max-width: 767px) {
  .sidebar { display: none; }
  .shell { padding: 0; gap: 0; }
  .main { border-radius: 0; border: none; }
  .mobile-only { display: flex; }
  .tabbar { display: flex; }
  .btn-mobile-menu { display: inline-flex; }
  /* 工具介绍页：手机端同样允许滑动（桌面端已在基础样式里放开） */
  .no-scroll { overflow-y: auto !important; }
  .tool-intro-wrap {
    min-height: 0;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 18px 16px 32px;
  }
  .page-head { padding: 14px 16px 10px; }
  .page-scroll { padding: 16px 16px 24px; }
  .page-scroll {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }
  /* 移动端报告页：操作按钮固定在底部（不随正文滚动、不遮挡内容），返回用顶部 ← */
  .report-actions {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    position: sticky;
    bottom: -16px;
    margin: 18px -16px -24px;
    padding: 12px 16px 16px;
    background: rgba(248,248,248,.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    z-index: 5;
  }
.report-actions .btn { flex: 1 1 45%; margin: 0; }
  .chat-scroll { padding: 18px 14px 14px; }
  .composer { padding: 10px 12px 10px; }
  .lp-nav { padding: 12px 16px; }
  .lp-nav-links { display: none; }
  .lp-hero { padding: 104px 16px 32px; }
  .lp-hero-copy p { line-height: 1.7; }
  .lp-preview { flex-direction: column; margin-top: 40px; }
  .lp-compare { padding: 64px 16px; }
  .lp-compare-grid { grid-template-columns: 1fr; gap: 20px; }
  .lp-cv-inner { flex-direction: column; align-items: center; }
  .lp-cv-paper.a4 { width: min(300px, 100%); }
  .cv-notes { width: 100%; }
  .lp-cv-arrow { transform: rotate(90deg); }
  .lp-preview-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #EEEEEE; }
  .lp-preview-bottom { margin-top: 12px; }
  .lp-preview-jobgrid { grid-template-columns: 1fr 1fr; }
  .lp-stats { padding: 40px 16px; }
  .lp-stats-grid { gap: 32px; }
  .lp-stat { width: 100%; }
  .lp-story { padding: 64px 16px; gap: 40px; }
  .lp-story-copy > p { margin-left: 0; }
  .lp-outcome { padding: 64px 16px; }
  .lp-outcome-grid { grid-template-columns: 1fr; }
  .lp-workflow { padding: 64px 16px; }
  .lp-workflow-card { flex-direction: column; align-items: stretch; padding: 22px; }
  .lp-workflow-visual { width: 100%; }
  .lp-membership { padding: 64px 16px; }
  .lp-membership-grid { grid-template-columns: 1fr; }
  .lp-faq { padding: 64px 16px; }
  .lp-cta { padding: 72px 16px 56px; }
  .lp-footer-info { flex-direction: column; gap: 6px; text-align: center; }
}

/* 桌面端内容宽度 */
@media (min-width: 768px) {
  .chat-inner, .composer-inner, .page-inner { margin: 0 auto; }
}

/* 打印：仅输出报告内容 */
@media print {
  body { background: #fff; }
  .sidebar, .tabbar, .topbar, .composer, .drawer, .drawer-mask,
  .view-login, .view-chat, .view-records, .view-templates, .view-pricing,
  .view-interview { display: none !important; }
  .app, .shell, .main, .view-report { display: block !important; height: auto !important; overflow: visible !important; }
  .page-scroll { overflow: visible !important; padding: 0; }
  .page-head { display: none !important; }
  .report-block, .report-footer { break-inside: avoid; box-shadow: none; }
  .report-actions { display: none !important; }
}

/* 简单加载态 */
.typing-dots { display: inline-flex; gap: 3px; align-items: center; padding: 4px 0; }
.typing-dots i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--text-3);
  animation: blink 1.2s infinite ease-in-out;
}
.typing-dots i:nth-child(2) { animation-delay: .15s; }
.typing-dots i:nth-child(3) { animation-delay: .3s; }
@keyframes blink { 0%, 80%, 100% { opacity: .25; transform: scale(.85); } 40% { opacity: 1; transform: scale(1); } }

/* 滚动条 */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: rgba(55,53,47,0.16); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(55,53,47,0.3); }
::-webkit-scrollbar-track { background: transparent; }

/* ============================================================
   心动蓝 · lollipop 式颜色层次增强
   黑白骨架与版式不变，只补柔和渐变与蓝色系层次；
   199 旗舰档黑框黑按钮、黑色主按钮等既有约定全部保留。
   ============================================================ */
:root {
  --lp-accent: #008cff;
  --lp-accent-deep: #0068c8;
  --lp-accent-soft: rgba(0, 140, 255, 0.11);
  --lp-accent-softer: rgba(0, 140, 255, 0.07);
  --lp-accent-border: rgba(0, 140, 255, 0.42);
  --lp-accent-glass: rgba(0, 140, 255, 0.14);
  --lp-violet-soft: rgba(124, 111, 231, 0.17);
  --lp-sky-line: linear-gradient(180deg, #018bff 0%, #d4ebff 100%);
}

/* ---------- 1) 落地页氛围：顶部淡紫 + 淡蓝的光晕与冷调渐变 ---------- */
.lp-hero-bg {
  background:
    radial-gradient(52rem 30rem at 10% -9rem, rgba(124, 111, 231, 0.20), rgba(124, 111, 231, 0) 62%),
    radial-gradient(62rem 36rem at 90% -11rem, rgba(0, 140, 255, 0.19), rgba(0, 140, 255, 0) 60%),
    radial-gradient(46rem 30rem at 92% 34%, rgba(61, 143, 232, 0.09), rgba(61, 143, 232, 0) 65%),
    radial-gradient(50rem 34rem at 6% 68%, rgba(0, 140, 255, 0.07), rgba(0, 140, 255, 0) 62%),
    linear-gradient(to bottom, #ffffff 0%, #f4f9fe 42%, #e9f1fb 78%, var(--bg) 100%);
}
.lp-hero-veil {
  background: radial-gradient(56rem 24rem at 50% -9rem, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 72%);
}

/* 三大工具屏：在整页背景之上叠一层极淡蓝雾，形成首屏之后的第一段颜色呼吸 */
.lp-scroll > .lp-tools {
  background: rgba(239, 246, 255, 0.72);
}

/* 同屏大标题下方的小竖线 / 强调块，用品牌蓝代替灰，点缀颜色变化 */
.lp-section-intro h2::after,
.lp-membership-heading h2::after,
.lp-simple-heading h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 140, 255, 0.18), var(--lp-accent) 55%, #d4ebff);
}
.lp-workflow-heading h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 140, 255, 0.18), var(--lp-accent) 55%, #d4ebff);
}

/* ---------- 2) 落地页会员区 ---------- */
.lp-membership {
  background:
    radial-gradient(52rem 22rem at 50% -14rem, rgba(0, 140, 255, 0.16), rgba(0, 140, 255, 0) 72%),
    radial-gradient(36rem 20rem at 92% 16%, rgba(124, 111, 231, 0.10), rgba(124, 111, 231, 0) 70%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fe 52%, #ffffff 100%);
  border-top-color: rgba(61, 143, 232, 0.20);
}

/* 前两档普通卡：同一档次的极淡蓝雾（与 19.9/59.9 视觉一致）；
   第三档 199 保持黑色描边主推，全部徽章仍为黑色。 */
.lp-membership-grid > .lp-plan:not(.featured) {
  background:
    radial-gradient(24rem 12rem at 100% 0%, rgba(0, 140, 255, 0.11), rgba(0, 140, 255, 0) 68%),
    linear-gradient(165deg, #eaf4ff 0%, #ffffff 58%);
  border-color: rgba(61, 143, 232, 0.30);
  box-shadow: 0 14px 34px rgba(61, 143, 232, 0.10);
}
.lp-membership-grid > .lp-plan:not(.featured) .lp-plan-btn {
  transition: border-color .15s var(--ease), color .15s var(--ease),
    background .15s var(--ease), box-shadow .15s var(--ease);
}
.lp-membership-grid > .lp-plan:not(.featured) .lp-plan-btn:hover {
  border-color: rgba(0, 140, 255, 0.65);
  color: var(--lp-accent-deep);
  background: rgba(0, 140, 255, 0.08);
}

/* 普通卡列表对勾与分隔线做蓝灰微调，保持黑色主按钮不抢 199 */
.lp-membership-grid > .lp-plan:not(.featured) li::before {
  color: #0068c8;
}

/* ---------- 3) 登录后：付费页三张方案卡 ---------- */
#pricing-body .plan-card:not(.featured) {
  background:
    radial-gradient(22rem 11rem at 100% 0%, rgba(0, 140, 255, 0.11), rgba(0, 140, 255, 0) 66%),
    linear-gradient(165deg, #e9f3ff 0%, #ffffff 60%);
  border-color: rgba(61, 143, 232, 0.32);
  box-shadow: 0 12px 30px rgba(61, 143, 232, 0.09);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), transform .2s var(--lp-motion-easing);
}
#pricing-body .plan-card:not(.featured):hover {
  border-color: rgba(0, 140, 255, 0.60);
  box-shadow: 0 16px 36px rgba(61, 143, 232, 0.18);
  transform: translateY(-2px);
}
#pricing-body .plan-card:not(.featured) .plan-bullets li::before {
  color: #0068c8;
}
#pricing-body .plan-card:not(.featured) .plan-head-btn:hover {
  border-color: rgba(0, 140, 255, 0.75);
  color: var(--lp-accent-deep);
  background: rgba(0, 140, 255, 0.09);
}

/* 三个功能要点的三色块 hover 提升（黄/蓝/绿已有，强化圆角层次） */
.pk { transition: transform .2s var(--lp-motion-easing), box-shadow .2s var(--lp-motion-easing); }
.pk:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(25, 25, 25, 0.07);
}

/* ---------- 4) 登录后应用：侧栏与内容区 ---------- */
/* 主内容区：白毛玻璃上叠一层极淡蓝渐变，给内部所有页面统一冷调层次 */
.main {
  background:
    radial-gradient(42rem 24rem at 88% -10rem, rgba(0, 140, 255, 0.11), rgba(0, 140, 255, 0) 66%),
    radial-gradient(30rem 18rem at -6% 88%, rgba(124, 111, 231, 0.08), rgba(124, 111, 231, 0) 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.80) 0%, rgba(240, 247, 255, 0.72) 100%);
}

/* 侧栏当前项：蓝底 + 蓝字 + 左侧蓝条，替代原来的灰底 */
.side-item {
  position: relative;
}
.side-item.active {
  background: linear-gradient(90deg, rgba(0, 140, 255, 0.16), rgba(0, 140, 255, 0.075));
  color: #005fbb;
  font-weight: 600;
}
.side-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--lp-accent);
}
.side-item.active .side-desc { color: rgba(0, 95, 187, 0.86); }

/* 三个工具介绍页：各工具一张不同色相的玻璃卡，便于一眼区分 */
.view-chat .tool-intro {
  background:
    radial-gradient(26rem 14rem at 100% -3rem, rgba(0, 140, 255, 0.22), rgba(0, 140, 255, 0) 68%),
    radial-gradient(22rem 12rem at -8% 112%, rgba(124, 111, 231, 0.14), rgba(124, 111, 231, 0) 66%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42));
  border-color: rgba(0, 140, 255, 0.40);
  box-shadow: 0 26px 60px rgba(0, 140, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.view-chat .ti-points li {
  border-color: rgba(0, 140, 255, 0.24);
  background: rgba(255, 255, 255, 0.58);
}
.view-chat .ti-points li::before { color: #0068c8; }

.view-interview .tool-intro {
  background:
    radial-gradient(26rem 14rem at 100% -3rem, rgba(22, 163, 74, 0.18), rgba(22, 163, 74, 0) 68%),
    radial-gradient(22rem 12rem at -8% 112%, rgba(0, 140, 255, 0.11), rgba(0, 140, 255, 0) 66%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.44));
  border-color: rgba(22, 163, 74, 0.38);
  box-shadow: 0 26px 60px rgba(22, 163, 74, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.view-interview .ti-points li {
  border-color: rgba(22, 163, 74, 0.24);
  background: rgba(255, 255, 255, 0.58);
}
.view-interview .ti-points li::before { color: #177a45; }

.view-assist .tool-intro {
  background:
    radial-gradient(26rem 14rem at 100% -3rem, rgba(124, 111, 231, 0.22), rgba(124, 111, 231, 0) 68%),
    radial-gradient(22rem 12rem at -8% 112%, rgba(0, 140, 255, 0.13), rgba(0, 140, 255, 0) 66%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.46));
  border-color: rgba(124, 111, 231, 0.44);
  box-shadow: 0 26px 60px rgba(124, 111, 231, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.view-assist .ti-points li {
  border-color: rgba(124, 111, 231, 0.24);
  background: rgba(255, 255, 255, 0.58);
}
.view-assist .ti-points li::before { color: #5b3fd4; }

/* 介绍页开始按钮：黑钮 hover 时叠一层极淡品牌色光，不与黑色冲突 */
.ti-btn:hover,
.lp-cta-primary:hover,
.lp-nav-cta:hover,
.lp-plan.featured .lp-plan-btn:hover {
  box-shadow: 0 10px 24px rgba(0, 60, 130, 0.18);
}

/* ---------- 5) 通用卡片微反馈：hover 时边框向品牌蓝过渡 ---------- */
.lp-tool-card:hover,
.lp-outcome-card:hover,
.lp-workflow-card:hover,
.lp-faq-item:hover {
  border-color: rgba(0, 140, 255, 0.44);
}
.lp-faq-item.open { border-color: rgba(0, 140, 255, 0.52); }
.lp-faq-item.open .lp-faq-q::after {
  color: var(--lp-accent-deep);
}

/* FAQ 加号 hover 提示蓝 */
.lp-faq-q:hover::after { color: var(--lp-accent-deep); }

/* ---------- 6) 对比 / 步骤区的对勾与叉保持语义色，但加一点饱和度提升 ---------- */
.lp-step-cell.good { border-color: rgba(22, 163, 74, 0.30); }
.lp-step-cell.bad { border-color: rgba(245, 63, 63, 0.28); }

/* 减少动效偏好：颜色变化不受滚动分页限制 */
@media (prefers-reduced-motion: reduce) {
  .side-item.active::before { animation: none; }
}

/* ============================================================
   对话页桌面说明栏（与模拟面试/面试辅助一致）
   ============================================================ */
.chat-page-head { display: flex; }
.chat-page-head > div:first-child { margin-right: auto; }
@media (max-width: 767px) {
  .chat-page-head { display: none !important; }
}

/* ============================================================
   模拟面试 v4 分栏
   上方 1/3：面试官问题大字（唯一问题显示区）
   中部：摄像头/画面
   右下：用户语音转文字回答区（向上滚动，不覆盖问题区）+ 输入栏
   ============================================================ */
.iv3-question {
  top: 92px;
  width: min(760px, 92%);
  max-height: calc(33.333% - 96px);
  overflow-y: auto;
  font-size: 20px;
  padding: 16px 24px;
  background: rgba(10, 14, 22, 0.62);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
.iv3-question::-webkit-scrollbar,
.iv3-chat::-webkit-scrollbar { width: 4px; height: 4px; }
.iv3-question::-webkit-scrollbar-thumb,
.iv3-chat::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.22); border-radius: 4px; }

/* 用户回答：右下角、右对齐、向上滚动，绝不越过上方问题区 */
.iv3-chat {
  left: auto;
  right: 26px;
  bottom: 134px;
  width: min(440px, 46%);
  max-height: calc(66.667% - 172px);
  min-height: 0;
  display: flex;
  align-items: flex-end;
  overflow-y: auto;
  padding-right: 0;
  scrollbar-width: thin;
}
.iv3-chat .msg { justify-content: flex-end; max-width: 100%; }
.iv3-chat .msg-user { max-width: 94%; }
.iv3-chat .msg-user .bubble {
  background: rgba(0, 140, 255, 0.46);
  border: 1px solid rgba(0, 140, 255, 0.62);
  color: #fff;
}

/* 输入栏：右下角（语音窄胶囊 + 文字宽胶囊，格式保持原样） */
.iv3-inputbar {
  left: auto;
  right: 26px;
  transform: none;
  bottom: 46px;
  width: min(600px, 54%);
  justify-content: flex-end;
}

/* 隐私提示挪到输入栏同侧下方 */
.iv3-privacy {
  left: auto;
  right: 26px;
  bottom: 12px;
}

@media (max-width: 767px) {
  .iv3-question {
    top: 88px;
    width: calc(100% - 24px);
    max-height: calc(33.333% - 92px);
    font-size: 16px;
    padding: 12px 16px;
  }
  .iv3-chat {
    display: flex;
    right: 10px;
    bottom: 116px;
    width: 76%;
    max-height: calc(66.667% - 158px);
  }
  .iv3-inputbar {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 46px;
  }
  .iv3-privacy {
    right: 12px;
    bottom: 12px;
    font-size: 10px;
    white-space: normal;
    width: auto;
  }
  .iv3-hr { bottom: 92px; width: 104px; opacity: 0.92; }
}

/* ============================================================
   三工具颜色映射：对话 / 简历报告 = 蓝，
   模拟面试 = 绿，面试辅助 = 紫
   范围：首页玻璃卡、工具卡、标签，会员页三功能要点块，工具介绍页
   ============================================================ */
:root {
  --tool-blue: #0b6fd6;
  --tool-blue-soft: rgba(11, 111, 214, 0.10);
  --tool-green: #159c58;
  --tool-green-soft: rgba(21, 156, 88, 0.10);
  --tool-purple: #6d55e6;
  --tool-purple-deep: #5436d8;
  --tool-purple-soft: rgba(109, 85, 230, 0.12);
}

/* HR 形象：再往下放一点、往中间靠一点（桌面） */
.iv3-hr {
  left: 23%;
  bottom: 30px;
  width: 140px;
}
@media (max-width: 767px) {
  .iv3-hr {
    left: 12%;
    bottom: 96px;
    width: 98px;
  }
}

/* 首页首屏玻璃卡：面试辅助 由橙改为紫 */
.lp-glass-card.tint-orange {
  background:
    radial-gradient(20rem 11rem at 100% 0%, rgba(109, 85, 230, 0.14), rgba(109, 85, 230, 0) 68%),
    linear-gradient(150deg, rgba(234, 230, 255, 0.96), rgba(255, 255, 255, 0.52));
  border-color: rgba(109, 85, 230, 0.30);
}
.lp-glass-card.tint-orange h3 { color: #5436d8; }

/* 首页工具卡：三张卡分别对应 蓝 / 绿 / 紫 */
.lp-tools-grid > .lp-tool-card:nth-child(1) {
  border-color: rgba(11, 111, 214, 0.22);
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 62%);
}
.lp-tools-grid > .lp-tool-card:nth-child(2) {
  border-color: rgba(21, 156, 88, 0.22);
  background: linear-gradient(180deg, #ebf7f0 0%, #ffffff 62%);
}
.lp-tools-grid > .lp-tool-card.lp-tool-hot {
  border-color: rgba(109, 85, 230, 0.34);
  background:
    radial-gradient(22rem 12rem at 100% 0%, rgba(109, 85, 230, 0.12), rgba(109, 85, 230, 0) 68%),
    linear-gradient(180deg, #f0edff 0%, #ffffff 62%);
}
.lp-tool-tag {
  background: linear-gradient(90deg, #6d55e6, #8b5cf6);
}

/* 截图模拟里的工作台入口：面试辅助 = 紫 */
.lp-preview-navitem.hot {
  border-color: rgba(109, 85, 230, 0.30);
  background: linear-gradient(180deg, rgba(240, 237, 255, 0.85), rgba(255, 255, 255, 0.5));
}
.lp-preview-tool.hot {
  border-color: rgba(109, 85, 230, 0.34);
  background: linear-gradient(180deg, rgba(240, 237, 255, 0.95), #fff);
}

/* 功能标签：免费体验=蓝，强烈推荐=绿，重点推荐=紫 */
.side-tag.free,
.glass-tag.free {
  color: var(--tool-blue);
  background: var(--tool-blue-soft);
}
.side-tag.rec,
.glass-tag.rec {
  color: #fff;
  background: var(--tool-green);
}
.side-hot,
.glass-tag.hot {
  color: #fff;
  background: linear-gradient(90deg, #6d55e6, #8b5cf6);
  animation: lpPurplePulse 1.8s ease-in-out infinite;
}
@keyframes lpPurplePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109, 85, 230, 0.42); }
  50% { box-shadow: 0 0 0 7px rgba(109, 85, 230, 0); }
}

/* 登录后会员页三功能要点：简历报告=蓝，模拟面试=绿，面试辅助=紫 */
.pk.pk-yellow {
  border-color: rgba(11, 111, 214, 0.40);
  background: linear-gradient(180deg, #eaf3ff 0%, var(--surface) 72%);
}
.pk.pk-yellow b { color: var(--tool-blue); }
.pk.pk-blue {
  border-color: rgba(21, 156, 88, 0.40);
  background: linear-gradient(180deg, #e9f7ef 0%, var(--surface) 72%);
}
.pk.pk-blue b { color: var(--tool-green); }
.pk.pk-hot {
  border-color: rgba(109, 85, 230, 0.42);
  background: linear-gradient(180deg, #efebff 0%, var(--surface) 72%);
}
.pk.pk-hot b { color: var(--tool-purple-deep); }

/* 三个工具介绍页卡片：对话=蓝，模拟面试=绿，面试辅助=紫渐变 */
.view-chat .tool-intro {
  background:
    radial-gradient(26rem 14rem at 100% -3rem, rgba(11, 111, 214, 0.16), rgba(11, 111, 214, 0) 68%),
    linear-gradient(155deg, #e5f1ff 0%, rgba(255, 255, 255, 0.62) 58%, rgba(255, 255, 255, 0.42) 100%);
  border-color: rgba(11, 111, 214, 0.36);
}
.view-interview .tool-intro {
  background:
    radial-gradient(26rem 14rem at 100% -3rem, rgba(21, 156, 88, 0.15), rgba(21, 156, 88, 0) 68%),
    linear-gradient(155deg, #e4f6ec 0%, rgba(255, 255, 255, 0.64) 58%, rgba(255, 255, 255, 0.44) 100%);
  border-color: rgba(21, 156, 88, 0.34);
}
.view-assist .tool-intro {
  background:
    radial-gradient(26rem 14rem at 100% -3rem, rgba(109, 85, 230, 0.18), rgba(109, 85, 230, 0) 68%),
    linear-gradient(155deg, #ece7ff 0%, rgba(255, 255, 255, 0.66) 56%, rgba(255, 255, 255, 0.48) 100%);
  border-color: rgba(109, 85, 230, 0.40);
  box-shadow: 0 26px 60px rgba(109, 85, 230, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* 介绍页要点边框同步映射 */
.view-chat .ti-points li { border-color: rgba(11, 111, 214, 0.22); }
.view-interview .ti-points li { border-color: rgba(21, 156, 88, 0.22); }
.view-assist .ti-points li { border-color: rgba(109, 85, 230, 0.24); }

/* ============================================================
   会员卡三档与三色映射：
   尝鲜版(19.9)=蓝 · 进阶版(59.9)=绿 · 求职旗舰版(199)=紫
   覆盖官网落地页与登录后会员页；199 黑框黑按钮约定保留
   ============================================================ */
/* 官网落地页会员卡 */
.lp-membership-grid > .lp-plan:nth-child(1) {
  background:
    radial-gradient(24rem 12rem at 100% 0%, rgba(11, 111, 214, 0.10), rgba(11, 111, 214, 0) 68%),
    linear-gradient(165deg, #eaf3ff 0%, #ffffff 60%);
  border-color: rgba(11, 111, 214, 0.30);
}
.lp-membership-grid > .lp-plan:nth-child(2) {
  background:
    radial-gradient(24rem 12rem at 100% 0%, rgba(21, 156, 88, 0.10), rgba(21, 156, 88, 0) 68%),
    linear-gradient(165deg, #e9f6ee 0%, #ffffff 60%);
  border-color: rgba(21, 156, 88, 0.30);
}
.lp-membership-grid > .lp-plan.featured {
  background:
    radial-gradient(24rem 12rem at 100% 0%, rgba(109, 85, 230, 0.12), rgba(109, 85, 230, 0) 68%),
    linear-gradient(165deg, #efeaff 0%, #ffffff 62%);
  box-shadow: 0 16px 40px rgba(109, 85, 230, 0.14);
}
.lp-membership-grid > .lp-plan:nth-child(1) li::before { color: var(--tool-blue); }
.lp-membership-grid > .lp-plan:nth-child(2) li::before { color: var(--tool-green); }

/* 登录后会员页方案卡 */
#pricing-body .plan-list > .plan-card:nth-child(1) {
  background:
    radial-gradient(22rem 11rem at 100% 0%, rgba(11, 111, 214, 0.10), rgba(11, 111, 214, 0) 66%),
    linear-gradient(165deg, #eaf3ff 0%, #ffffff 60%);
  border-color: rgba(11, 111, 214, 0.30);
}
#pricing-body .plan-list > .plan-card:nth-child(2) {
  background:
    radial-gradient(22rem 11rem at 100% 0%, rgba(21, 156, 88, 0.10), rgba(21, 156, 88, 0) 66%),
    linear-gradient(165deg, #e9f6ee 0%, #ffffff 60%);
  border-color: rgba(21, 156, 88, 0.30);
}
#pricing-body .plan-list > .plan-card.featured {
  background:
    radial-gradient(22rem 11rem at 100% 0%, rgba(109, 85, 230, 0.12), rgba(109, 85, 230, 0) 66%),
    linear-gradient(165deg, #efeaff 0%, #ffffff 62%);
  box-shadow: 0 14px 34px rgba(109, 85, 230, 0.12);
}
#pricing-body .plan-list > .plan-card:nth-child(1) .plan-bullets li::before { color: var(--tool-blue); }
#pricing-body .plan-list > .plan-card:nth-child(2) .plan-bullets li::before { color: var(--tool-green); }

/* ============================================================
   面试官与输入栏位置微调：
   HR 从画面 23% 挪回 12%（现位置与左边框之间）
   输入栏同步左移，使 HR 左留白 ≈ HR 到语音按钮间距
   ============================================================ */
.iv3-hr {
  left: 12%;
  bottom: 30px;
  width: 140px;
}
.iv3-inputbar {
  left: 37%;
  right: auto;
  transform: none;
  bottom: 46px;
  width: min(600px, 54%);
}

/* ============================================================
   面试辅助 · 使用范围说明（合规标注）
   固定黑色字体，禁止改成红色；不得隐藏或折叠
   ============================================================ */
.scope-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--ink);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 13px 18px;
  margin-bottom: 18px;
}
.scope-note b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.scope-note p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink);
}

/* 实时监听页顶部常驻提示条（浅底黑字，不打断操作） */
.al2-scope {
  flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}

/* ================= 校招名录（调研助手） ================= */
#directory-body .page-inner { max-width: 940px; }

.dir-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-feature);
  padding: 24px 26px;
  box-shadow: 0 1px 2px rgba(25, 25, 25, .04), 0 8px 24px rgba(25, 25, 25, .05);
}
.dir-card-t { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.dir-card-d { font-size: 13.5px; color: var(--text-2); line-height: 1.8; margin-bottom: 18px; }
.dir-label { font-size: 13px; font-weight: 600; margin: 14px 0 7px; display: flex; align-items: center; gap: 8px; }
.dir-req { font-size: 11px; font-weight: 600; color: #b02a23; background: rgba(224, 52, 44, .08); padding: 1px 7px; border-radius: var(--radius-pill); }
.dir-opt { font-size: 11px; font-weight: 500; color: var(--text-3); }
.dir-field { position: relative; }
.dir-input {
  width: 100%; height: 48px; padding: 0 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: var(--surface); font-family: inherit; font-size: 14.5px; color: var(--text);
  outline: none; transition: border-color .2s var(--ease);
}
.dir-input:focus { border-color: var(--text); }
.dir-note { font-size: 12.5px; color: var(--text-3); line-height: 1.7; margin: 14px 0 16px; }

/* 生成中 */
.dir-building { text-align: left; }
.dir-build-t { font-size: 17px; font-weight: 700; margin-bottom: 16px; }
.dir-bar { height: 8px; border-radius: var(--radius-pill); background: rgba(25, 25, 25, .07); overflow: hidden; }
.dir-bar span { display: block; height: 100%; border-radius: var(--radius-pill); background: linear-gradient(90deg, #0b6fd6, #159c58 55%, #6d55e6); transition: width .6s var(--ease); }
.dir-build-p { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin-top: 14px; }
.dir-stage { font-size: 14px; color: var(--text); margin-top: 6px; }
.dir-build-note { font-size: 12.5px; color: var(--text-3); line-height: 1.75; margin-top: 12px; }

/* 顶部红字提示（投递前先做完两件事） */
.dir-notice {
  border: 1.5px solid rgba(224, 52, 44, .25);
  background: rgba(224, 52, 44, .045);
  border-radius: var(--radius-feature);
  padding: 18px 20px; margin-bottom: 18px;
}
.dir-notice-t { color: #E0342C; font-weight: 800; font-size: 16.5px; letter-spacing: -.02em; margin-bottom: 12px; }
.dir-notice-i { display: flex; gap: 9px; margin-bottom: 10px; font-size: 13.5px; line-height: 1.75; }
.dir-notice-i b { font-weight: 700; }
.dir-notice-n { color: #E0342C; font-weight: 800; flex: 0 0 auto; }
.dir-notice-f { margin-top: 14px; padding-top: 13px; border-top: 1px dashed rgba(224, 52, 44, .25); font-size: 13px; color: var(--text-2); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dir-notice-f b { color: var(--text); font-weight: 700; }
.dir-notice-btn {
  height: 32px; padding: 0 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong); background: var(--surface);
  font-family: inherit; font-size: 12.5px; font-weight: 600; color: var(--text); cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.dir-notice-btn:hover { background: var(--hover); transform: translateY(-1px); }

/* 已认证条 */
.dir-done {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 11px 20px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 13.5px; margin-bottom: 18px;
}
.dir-dot { width: 7px; height: 7px; border-radius: 50%; background: #159c58; flex: 0 0 7px; }
.dir-done-sp { flex: 1; }
.dir-link { border: 0; background: transparent; color: var(--text-3); font-family: inherit; font-size: 12.5px; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

/* 行业属性 */
.dir-industry { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 20px; margin-bottom: 18px; }
.dir-industry-t { font-size: 11.5px; font-weight: 700; color: var(--text-3); letter-spacing: .04em; }
.dir-industry p { font-size: 14.5px; font-weight: 600; margin-top: 6px; line-height: 1.7; }
.dir-industry-b { font-size: 12.5px; color: var(--text-2); line-height: 1.7; margin-top: 8px; }

/* 名单 */
.dir-list-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin: 24px 0 8px; }
.dir-list-head h2 { font-size: 15.5px; font-weight: 700; }
.dir-count { font-size: 12.5px; color: var(--text-3); }
.dir-legend { font-size: 12px; color: var(--text-3); line-height: 1.7; margin-bottom: 6px; }

.dir-line { margin-top: 22px; }
.dir-line-h { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.dir-line-n { font-size: 14.5px; font-weight: 700; }
.dir-line-c { font-size: 12px; color: var(--text-3); }
.dir-line-note { font-size: 12.5px; color: var(--text-2); line-height: 1.7; margin: -4px 0 10px; }
.dir-strength { font-size: 11.5px; font-weight: 700; padding: 3px 11px; border-radius: var(--radius-pill); }
.dir-strength.st-strong { background: rgba(21, 156, 88, .12); color: #0f7a45; }
.dir-strength.st-mid { background: rgba(11, 111, 214, .10); color: #0b6fd6; }
.dir-strength.st-weak { background: rgba(25, 25, 25, .06); color: var(--text-3); }

.dir-co {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 15px 18px; margin-bottom: 9px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.dir-co:hover { transform: translateY(-2px) scale(1.006); box-shadow: var(--lp-shadow-card-hover); border-color: rgba(25, 25, 25, .10); }
.dir-lv { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 7px; font-size: 11px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.dir-lv.lb-A { background: rgba(21, 156, 88, .12); color: #0f7a45; }
.dir-lv.lb-B { background: rgba(11, 111, 214, .10); color: #0b6fd6; }
.dir-lv.lb-C { background: rgba(25, 25, 25, .06); color: var(--text-3); }
.dir-co-l { flex: 1; min-width: 0; }
.dir-co-r1 { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.dir-co-n { font-size: 15px; font-weight: 700; letter-spacing: -.015em; }
.dir-co-t { font-size: 10.5px; font-weight: 600; padding: 2px 8px; border-radius: var(--radius-pill); background: rgba(25, 25, 25, .06); color: var(--text-2); }
.dir-co-w { font-size: 13px; color: var(--text-2); line-height: 1.65; }
.dir-co-ev { font-size: 11.5px; color: var(--text-3); margin-top: 4px; line-height: 1.6; }
.dir-co-a { flex: 0 0 auto; font-size: 12px; font-weight: 600; color: var(--text); text-decoration: underline; text-underline-offset: 3px; margin-top: 2px; }
.dir-co-empty { font-size: 13px; color: var(--text-3); padding: 10px 2px; }

.dir-meta { font-size: 12px; color: var(--text-3); line-height: 1.75; margin-top: 14px; }

/* 底部提示（黑字，禁用红色） */
.dir-foot {
  margin-top: 28px; padding: 16px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text); font-size: 13.5px; line-height: 1.8;
}
.dir-foot-t { font-weight: 700; color: var(--text); margin-bottom: 6px; }
.dir-site { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; color: var(--text); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.dir-site-none { margin-top: 10px; color: var(--text-2); }
.dir-disclaimer { margin-top: 16px; font-size: 12px; color: var(--text-3); line-height: 1.8; }

@media (max-width: 860px) {
  #directory-body .page-inner { max-width: 100%; }
  .dir-co { flex-wrap: wrap; }
  .dir-notice-f { align-items: flex-start; }
}
