/* AILabor 企业站 —— 零依赖静态样式。深色为主,自动适配浅色偏好。 */
:root {
  --bg: #070913;
  --bg-alt: #0b0f19;
  --card: #0e1424;
  --line: #1e293b;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --dim: #7c8ba1;
  --accent: #22d3ee;
  --accent-2: #6366f1;
  --radius: 14px;
  --max: 1080px;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #ffffff; --bg-alt: #f6f8fc; --card: #ffffff; --line: #e2e8f0;
    --text: #0f172a; --muted: #475569; --dim: #64748b;
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.7 -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
h1, h2, h3 { line-height: 1.25; letter-spacing: -0.02em; }

/* 顶部导航 */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { font-weight: 800; text-decoration: none; letter-spacing: -0.03em; }
.brand span { color: var(--accent); }
.nav nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
.nav nav a:hover { color: var(--text); }

/* 按钮 */
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  padding: 11px 20px; border-radius: 10px; font-weight: 700; font-size: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05070c; border: 0; cursor: pointer;
}
@media (prefers-color-scheme: light) { .btn { color: #fff; } }
.btn:hover { filter: brightness(1.08); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-block { display: block; width: 100%; margin-top: auto; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }

/* 主视觉 */
/* 上边距按视口高度收缩:演示要在首屏里露出来 —— 它被推到折线以下的话,
   "一眼看明白"这件事根本不会发生,而那正是它存在的理由。 */
.hero { max-width: var(--max); margin: 0 auto; padding: clamp(28px, 6vh, 72px) 20px 48px; text-align: center; }
.eyebrow {
  display: inline-block; margin: 0 0 14px; padding: 5px 12px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent); font-size: 12px; font-weight: 700;
}
.hero h1 { margin: 0 0 20px; font-size: clamp(30px, 5.4vw, 54px); font-weight: 800; }
.lede { max-width: 640px; margin: 0 auto 24px; color: var(--muted); font-size: 17px; }
.lede strong, .section-lede strong { color: var(--text); }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.fineprint { color: var(--dim); font-size: 12px; margin-top: 18px; }
.fineprint a { color: var(--muted); }
.center { text-align: center; }

/* 卖点条 */
.strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px;
  max-width: var(--max); margin: 0 auto; padding: 0 20px;
  background: transparent;
}
.strip > div {
  padding: 20px 16px; text-align: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); margin: 4px;
}
.strip b { display: block; font-size: 15px; }
.strip span { color: var(--dim); font-size: 13px; }

/* 区块 */
.section { max-width: var(--max); margin: 0 auto; padding: 72px 20px; }
.section-alt { background: var(--bg-alt); max-width: none; }
.section-alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section h2 { font-size: clamp(24px, 3.4vw, 34px); margin: 0 0 12px; }
.section-lede { color: var(--muted); max-width: 660px; margin: 0 0 32px; }

/* 步骤 */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.steps li { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.steps h3 { margin: 0 0 8px; font-size: 15px; color: var(--accent); }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

/* 卡片组 */
.cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.cards article { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.cards h3 { margin: 0 0 8px; font-size: 15px; }
.cards p { margin: 0; color: var(--muted); font-size: 14px; }

/* 价格 */
.pricing { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.plan-featured { border-color: color-mix(in srgb, var(--accent) 45%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent); }
.plan .tag { margin: 0 0 8px; color: var(--accent); font-size: 12px; font-weight: 700; }
.plan h3 { margin: 0 0 6px; font-size: 17px; }
.price { margin: 0 0 16px; font-size: 34px; font-weight: 800; letter-spacing: -0.03em; }
.price small { font-size: 14px; font-weight: 500; color: var(--dim); }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.plan li { padding: 6px 0 6px 20px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 15px; }
.faq p { color: var(--muted); font-size: 14px; margin: 10px 0 0; }

/* 页脚 */
.footer { border-top: 1px solid var(--line); padding: 36px 20px; text-align: center; color: var(--dim); font-size: 13px; }
.footer p { margin: 6px 0; }
.footer .links a { color: var(--muted); text-decoration: none; }
.footer .links a:hover { color: var(--text); }

/* 法务页面。和首页共用一份 styles.css:法务页不值得第二套视觉语言,
   而共用意味着改主题时它们不会被落下。 */
.legal-body { max-width: 760px; margin: 0 auto; padding: 48px 20px 72px; line-height: 1.85; }
.legal-body h1 { font-size: 26px; margin: 0 0 24px; }
.legal-body h2 { font-size: 18px; margin: 34px 0 12px; }
.legal-body h3 { font-size: 15px; margin: 24px 0 8px; }
.legal-body li { margin: 6px 0; }
.legal-body blockquote { margin: 16px 0; padding: 12px 16px; border-left: 3px solid currentColor;
  opacity: .78; font-size: 14px; }
.legal-body code { font-size: .92em; padding: 1px 5px; border-radius: 4px; background: rgba(127,127,127,.16); }
.legal-back { font-size: 13px; margin-bottom: 20px; }
.legal-draft { padding: 12px 16px; border-radius: 8px; font-weight: 700;
  background: #7c2d12; color: #fed7aa; }
.legal-links a { margin-right: 14px; }

/* 语言开关。刻意做得不像主按钮:它是"我读不懂这一页"时才会找的东西,
   不该和「下载」抢注意力,但必须一眼找得到 —— 所以给一圈描边而不是实心底色。 */
.nav .lang {
  margin-left: .35rem;
  padding: .3rem .6rem;
  border: 1px solid var(--line, #2b3446);
  border-radius: 6px;
  font-size: .78rem;
  line-height: 1;
  white-space: nowrap;
}
.nav .lang:hover { border-color: var(--accent, #22d3ee); }

/* ——————————————————————————————————————————————————————
   首屏演示:三拍讲完这个产品做什么
     ① 评论区里大部分是噪音  ② 只有想买的人被挑出来  ③ 回复要你点头才发

   为什么不是 GIF:
     · 这个界面是深色渐变,而 GIF 只有 256 色 —— 会糊成一片色带
     · 录屏 GIF 动辄 5–20MB,恰好是首屏最重的那个资源,而它的任务是制造第一印象
     · 跟不了浅色模式、搜索引擎读不到里面的字、也没法响应"减少动态效果"
     · 真录屏里是**真实评论和真实用户名** —— 而这一页承诺的正是"不碰你的账号"

   所有动画共用一条 14s 时间线,各元素靠自己的百分比停点错开;
   这样它们永远同步,不会像各写各的 delay 那样跑着跑着散架。
   —————————————————————————————————————————————————————— */
.demo {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 10px;
  margin: 28px auto 0;
  max-width: 940px;
  text-align: left;
}
.demo-step { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.demo-cap {
  margin: 0; font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  color: var(--dim); text-transform: none;
}
/* 最后一块贴底 —— 三列等高时,行数少的那两列底部会空出一段,
   把说明和按钮压到底才看起来是"一整套",而不是没做完。 */
.demo-card > :last-child { margin-top: auto; }
.demo-card {
  flex: 1;
  display: flex; flex-direction: column; gap: 6px;
  padding: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 150px;
}

/**
 * **播一次,停在终态。不循环。**
 *
 * 第一版是 14s 无限循环,而循环有个致命的副作用:每行的入场是错开的,所以**回到起点
 * 那一瞬间**,延迟为 0 的噪音行已经重新亮起、而延迟更大的买家行还在淡出 ——
 * 屏幕上出现"噪音亮着、想买的暗着",正好和这块演示要讲的意思相反。
 * 这不是想出来的,是盯着真渲染的一帧看出来的。
 *
 * 播一次还顺带解决另外两件事:落地页上不停打转的动画本身就是干扰;
 * 而停住的那一帧恰好是信息量最大的一帧(三列都填满),后来滚回来的人直接读得到。
 */
.demo-join, .demo-row, .demo-flag, .demo-draft, .demo-approve {
  animation-duration: 5.6s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.demo-join {
  align-self: center;
  color: var(--dim);
  font-size: 1.1rem;
  animation-name: demo-join;
}
.demo-join:nth-of-type(2) { animation-delay: .5s; }

/* 一条评论 / 一条线索 */
.demo-row {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: .78rem; line-height: 1.35;
  background: color-mix(in srgb, var(--line) 34%, transparent);
  animation-name: demo-in;
}
.demo-row span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-row.noise { animation-name: demo-noise; }
.demo-row.buyer { animation-name: demo-buyer; }
.demo-row:nth-child(2) { animation-delay: .12s; }
.demo-row:nth-child(3) { animation-delay: .24s; }
.demo-row:nth-child(4) { animation-delay: .36s; }
.demo-row:nth-child(5) { animation-delay: .48s; }

/* 「想买」标记 */
.demo-flag {
  flex: none;
  padding: 1px 6px; border-radius: 999px;
  font-size: .62rem; font-weight: 700; letter-spacing: .02em;
  color: #041016;
  background: var(--accent);
  animation-name: demo-flag;
}

/* 第三拍:草稿 + 你确认 */
.demo-draft {
  padding: 9px 10px;
  border: 1px dashed color-mix(in srgb, var(--accent) 55%, var(--line));
  border-radius: 10px;
  font-size: .76rem; line-height: 1.45;
  color: var(--muted);
  animation-name: demo-draft;
}
.demo-approve {
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 7px 10px; border-radius: 9px;
  font-size: .74rem; font-weight: 700;
  color: #041016;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  animation-name: demo-approve;
}

/* 每条关键帧都**以终态收尾**(100% 就是要停住的样子),配合 fill-mode: both。 */
@keyframes demo-join {
  0%, 18% { opacity: 0; transform: translateX(-4px); }
  30%, 100% { opacity: 1; transform: none; }
}
@keyframes demo-in {
  0% { opacity: 0; transform: translateY(6px); }
  12%, 100% { opacity: 1; transform: none; }
}
/* 噪音:出现之后被压暗,并且**不再回到高亮** —— 这正是产品在做的事 */
@keyframes demo-noise {
  0% { opacity: 0; transform: translateY(6px); }
  12% { opacity: 1; transform: none; }
  30% { opacity: 1; }
  42%, 100% { opacity: .28; transform: none; filter: saturate(.5); }
}
@keyframes demo-buyer {
  0% { opacity: 0; transform: translateY(6px); }
  12% { opacity: 1; transform: none; border-color: transparent; }
  30% { opacity: 1; border-color: transparent; }
  42%, 100% {
    opacity: 1;
    border-color: color-mix(in srgb, var(--accent) 70%, transparent);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
  }
}
@keyframes demo-flag {
  0%, 38% { opacity: 0; transform: scale(.7); }
  48%, 100% { opacity: 1; transform: none; }
}
@keyframes demo-draft {
  0%, 56% { opacity: 0; transform: translateY(6px); }
  68%, 100% { opacity: 1; transform: none; }
}
@keyframes demo-approve {
  0%, 74% { opacity: 0; transform: translateY(6px); }
  86% { opacity: 1; transform: none; box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent); }
  96% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 0%, transparent); }
  100% { opacity: 1; transform: none; box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent); }
}

@media (max-width: 720px) {
  .demo { grid-template-columns: 1fr; gap: 8px; }
  .demo-join { transform: rotate(90deg); }
  .demo-card { min-height: 0; }
}

/**
 * **关掉动画时不能只是"不动",而要停在能看懂的那一帧。**
 * 只写 `animation: none` 的话,元素会停在 opacity:0 —— 整块演示直接消失,
 * 而开这个设置的人正是最需要静态说明的那批。所以显式给出终态。
 */
@media (prefers-reduced-motion: reduce) {
  .demo-join, .demo-row, .demo-flag, .demo-draft, .demo-approve { animation: none; opacity: 1; transform: none; }
  .demo-row.noise { opacity: .28; }
  .demo-row.buyer {
    border-color: color-mix(in srgb, var(--accent) 70%, transparent);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
  }
}

/* ——————————————————————————————————————————————————————
   「它刻意不做的事」对照块。
   左边是这类工具的常见做法,右边是我们的约束 —— 每一行都能指回服务端真在做的事,
   所以它是**产品说明**,不是竞品攻击:左列没有点任何人的名。
   —————————————————————————————————————————————————————— */
.versus { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.vs-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 10px;
  align-items: stretch;
}
.vs-row p { margin: 0; padding: 13px 15px; border-radius: var(--radius); font-size: .92rem; line-height: 1.6; }
.vs-no {
  color: var(--dim);
  background: color-mix(in srgb, var(--line) 30%, transparent);
  border: 1px solid var(--line);
  text-decoration-line: line-through;
  text-decoration-color: color-mix(in srgb, var(--dim) 55%, transparent);
  text-decoration-thickness: 1px;
}
.vs-no b { color: var(--muted); font-weight: 600; }
.vs-yes {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 9%, var(--card));
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
}
.vs-yes b { color: var(--accent); }
@media (max-width: 720px) {
  .vs-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ══════════════════════════════════════════════════════════════
   产品走查:从招聘一个员工,到它自己干活,到你点头发出去。五幕,约 17 秒。

   ## 为什么是重画的界面,不是录屏

   录真机需要登录一个真实的社媒账号 —— 而"你的账号我们不碰"正是这一页的承诺;
   录出来的画面里还会有真实用户名和真实评论。所以这里是**照客户端还原的演示动画**
   (配色、圆角、侧边栏项、按钮文案都取自真实界面),而不是伪造的截图:
   它一眼看得出是演示,又足够像那个软件。

   ## 时间线

   所有元素共用 17s、播一次、停在最后一幕。每一幕自己淡入淡出,
   靠百分比停点错开 —— 不是各写各的 delay,那种跑一阵会散架。

     0–17%   ① 招聘:光标移到「录用」并点下去
    17–36%   ② 配好获客规则:关键词一个个蹦出来
    36–58%   ③ 它自己去搜:搜索框逐字打出「真丝连衣裙」
    58–78%   ④ 读评论、挑线索:两条被标上「想买」
    78–100%  ⑤ 你点头:草稿逐字打出,光标点「采纳并排队发送」→ 已发送
   ══════════════════════════════════════════════════════════════ */
.wt-wrap { max-width: 900px; margin: 26px auto 0; }

/* 应用窗口外壳 */
.wt {
  position: relative;
  display: grid; grid-template-columns: 132px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #070913;
  overflow: hidden;
  box-shadow: 0 18px 50px -24px rgba(0, 0, 0, .8);
  min-height: 268px;
}
.wt-bar {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: #0b1120;
  border-bottom: 1px solid var(--line);
}
.wt-dot { width: 9px; height: 9px; border-radius: 50%; background: #2b3648; }
.wt-dot:first-child { background: #f87171; }
.wt-dot:nth-child(2) { background: #fbbf24; }
.wt-dot:nth-child(3) { background: #34d399; }
.wt-bar b { margin-left: 8px; font-size: .68rem; font-weight: 700; color: #64748b; letter-spacing: .04em; }

/* 侧边栏 */
.wt-side { padding: 10px 8px; border-right: 1px solid var(--line); background: #090d16; }
.wt-nav {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px; margin-bottom: 3px;
  border-radius: 7px;
  font-size: .68rem; color: #64748b;
}
.wt-nav i { width: 5px; height: 5px; border-radius: 50%; background: #334155; flex: none; }
.wt-nav.on { background: rgba(34, 211, 238, .12); color: #67e8f9; }
.wt-nav.on i { background: #22d3ee; }

/* 舞台:五幕叠在一起,同一时刻只有一幕可见 */
.wt-stage { position: relative; padding: 14px; min-height: 214px; }
.wt-scene {
  position: absolute; inset: 14px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0;
  animation: wt-scene 17s 1 both;
}
.wt-scene:nth-of-type(1) { animation-name: wt-s1; }
.wt-scene:nth-of-type(2) { animation-name: wt-s2; }
.wt-scene:nth-of-type(3) { animation-name: wt-s3; }
.wt-scene:nth-of-type(4) { animation-name: wt-s4; }
.wt-scene:nth-of-type(5) { animation-name: wt-s5; }

.wt-title { margin: 0; font-size: .74rem; font-weight: 700; color: #94a3b8; }
.wt-title em { font-style: normal; color: #22d3ee; }
.wt-panel {
  flex: 1;
  display: flex; flex-direction: column; gap: 7px;
  padding: 10px;
  background: #0e1424; border: 1px solid #1e293b; border-radius: 10px;
}
.wt-line {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 8px; border-radius: 7px;
  background: rgba(30, 41, 59, .55);
  font-size: .72rem; color: #cbd5e1;
}
.wt-line span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wt-line.hit { border: 1px solid rgba(34, 211, 238, .55); background: rgba(34, 211, 238, .1); }
.wt-line.dim { opacity: .34; }
.wt-btn {
  align-self: flex-start;
  padding: 5px 11px; border-radius: 7px;
  font-size: .7rem; font-weight: 700; color: #041016;
  background: linear-gradient(135deg, #22d3ee, #6366f1);
}
.wt-tag {
  flex: none; padding: 1px 6px; border-radius: 999px;
  font-size: .58rem; font-weight: 700; color: #041016; background: #22d3ee;
}
.wt-chipbox { display: flex; flex-wrap: wrap; gap: 5px; }
.wt-chip {
  padding: 2px 8px; border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, .4); background: rgba(34, 211, 238, .1);
  color: #67e8f9; font-size: .66rem;
  opacity: 0; animation: wt-chip 17s 1 both;
}
.wt-chip:nth-child(2) { animation-delay: .3s; }
.wt-chip:nth-child(3) { animation-delay: .6s; }
.wt-chip:nth-child(4) { animation-delay: .9s; }

/* 输入框 + 逐字打字。用 width + steps 实现,不需要 JS。 */
.wt-input {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 9px; border-radius: 8px;
  border: 1px solid rgba(34, 211, 238, .45); background: #0b1120;
  font-size: .72rem; color: #e2e8f0;
}
.wt-type { overflow: hidden; white-space: nowrap; width: 0; }
.wt-type.t-search { animation: wt-type-search 17s 1 both; }
.wt-type.t-draft { animation: wt-type-draft 17s 1 both; white-space: normal; }
.wt-caret {
  flex: none; width: 1px; height: 12px; background: #22d3ee;
  animation: wt-caret 1s steps(1) infinite;
}

/**
 * 光标。**挂在按钮内部,不是舞台上的绝对坐标。**
 *
 * 第一版把落点写成 `translate(198px, 168px)` —— 实测偏出按钮 80px,而且中英文按钮
 * 宽度不同、窄屏又是另一套,写死的坐标不可能同时对。真渲染里量出来才发现的。
 * 现在光标是 `.wt-btn` 的子元素:终点恒等于按钮自己的位置,布局怎么变都落得准。
 */
.wt-btn { position: relative; }
.wt-cursor, .wt-ring {
  position: absolute; right: 12px; top: 50%; margin-top: -7px;
  width: 14px; height: 14px; border-radius: 50%;
  pointer-events: none; opacity: 0;
  animation-duration: 17s; animation-iteration-count: 1; animation-fill-mode: both;
}
.wt-cursor { border: 2px solid #22d3ee; background: rgba(34, 211, 238, .3); z-index: 6; }
.wt-ring { border: 2px solid #22d3ee; z-index: 5; }
.wt-cursor.c1 { animation-name: wt-cur1; }
.wt-ring.c1 { animation-name: wt-ring1; }
.wt-cursor.c5 { animation-name: wt-cur5; }
.wt-ring.c5 { animation-name: wt-ring5; }

@keyframes wt-cur1 {
  0% { opacity: 0; transform: translate(150px, -84px); }
  3% { opacity: 1; transform: translate(150px, -84px); }
  9%  { opacity: 1; transform: translate(0, 0); }
  11% { opacity: 1; transform: translate(0, 0) scale(.72); }
  13%, 15% { opacity: 1; transform: translate(0, 0); }
  17%, 100% { opacity: 0; transform: translate(0, 0); }
}
@keyframes wt-ring1 {
  0%, 10% { opacity: 0; transform: scale(1); }
  11% { opacity: .85; transform: scale(1); }
  17%, 100% { opacity: 0; transform: scale(2.8); }
}
@keyframes wt-cur5 {
  0%, 80% { opacity: 0; transform: translate(150px, -84px); }
  84% { opacity: 1; transform: translate(150px, -84px); }
  92% { opacity: 1; transform: translate(0, 0); }
  95% { opacity: 1; transform: translate(0, 0) scale(.72); }
  97%, 100% { opacity: 1; transform: translate(0, 0); }
}
@keyframes wt-ring5 {
  0%, 94% { opacity: 0; transform: scale(1); }
  95% { opacity: .85; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.8); }
}

@keyframes wt-scene { 0%, 100% { opacity: 0; } }
@keyframes wt-s1 { 0% { opacity: 0; } 2%, 15% { opacity: 1; } 17%, 100% { opacity: 0; } }
@keyframes wt-s2 { 0%, 17% { opacity: 0; } 19%, 34% { opacity: 1; } 36%, 100% { opacity: 0; } }
@keyframes wt-s3 { 0%, 36% { opacity: 0; } 38%, 56% { opacity: 1; } 58%, 100% { opacity: 0; } }
@keyframes wt-s4 { 0%, 58% { opacity: 0; } 60%, 76% { opacity: 1; } 78%, 100% { opacity: 0; } }
/* 最后一幕**不淡出** —— 停住的那一帧是信息量最大的一帧 */
@keyframes wt-s5 { 0%, 78% { opacity: 0; } 80%, 100% { opacity: 1; } }

@keyframes wt-chip { 0%, 21% { opacity: 0; transform: translateY(4px); } 25%, 34% { opacity: 1; transform: none; } 36%, 100% { opacity: 0; } }
@keyframes wt-type-search { 0%, 40% { width: 0; } 52%, 56% { width: 6.2em; } 58%, 100% { width: 6.2em; } }
@keyframes wt-type-draft { 0%, 82% { width: 0; } 94%, 100% { width: 100%; } }
@keyframes wt-caret { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* 光标走位:① 移到「录用」按钮 → 点;⑤ 移到「采纳并排队发送」→ 点。
   中间那几幕它退场 —— 那几步是员工自己在干,没人在操作鼠标,这是刻意的。 */

/* 幕次说明条:动画在跑到哪一步,下面同步点亮 */
.wt-steps { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; justify-content: center; }
.wt-steps li {
  list-style: none;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--card);
  font-size: .7rem; color: var(--dim);
  animation: wt-step 17s 1 both;
}
.wt-steps li:nth-child(1) { animation-name: wt-step1; }
.wt-steps li:nth-child(2) { animation-name: wt-step2; }
.wt-steps li:nth-child(3) { animation-name: wt-step3; }
.wt-steps li:nth-child(4) { animation-name: wt-step4; }
.wt-steps li:nth-child(5) { animation-name: wt-step5; }
@keyframes wt-step { 0%, 100% {} }
@keyframes wt-step1 { 0%, 16% { border-color: rgba(34,211,238,.6); color: #67e8f9; } 18%, 100% { border-color: var(--line); color: var(--dim); } }
@keyframes wt-step2 { 0%, 17% { border-color: var(--line); color: var(--dim); } 19%, 35% { border-color: rgba(34,211,238,.6); color: #67e8f9; } 37%, 100% { border-color: var(--line); color: var(--dim); } }
@keyframes wt-step3 { 0%, 36% { border-color: var(--line); color: var(--dim); } 38%, 57% { border-color: rgba(34,211,238,.6); color: #67e8f9; } 59%, 100% { border-color: var(--line); color: var(--dim); } }
@keyframes wt-step4 { 0%, 58% { border-color: var(--line); color: var(--dim); } 60%, 77% { border-color: rgba(34,211,238,.6); color: #67e8f9; } 79%, 100% { border-color: var(--line); color: var(--dim); } }
@keyframes wt-step5 { 0%, 78% { border-color: var(--line); color: var(--dim); } 80%, 100% { border-color: rgba(34,211,238,.6); color: #67e8f9; } }

@media (max-width: 720px) {
  .wt { grid-template-columns: 1fr; min-height: 0; }
  .wt-side { display: none; }
  .wt-cursor, .wt-ring { display: none; }   /* 窄屏走位对不上,不如不画 */
}

/**
 * 关掉动态效果:停在**最后一幕**(信息量最大的那一帧),而不是一片空白。
 * 只写 animation:none 的话所有幕都停在 opacity:0,整块消失 ——
 * 而开这个设置的人正是最需要静态说明的那批。
 */
@media (prefers-reduced-motion: reduce) {
  .wt-scene, .wt-chip, .wt-type, .wt-cursor, .wt-ring, .wt-steps li { animation: none; }
  .wt-scene { opacity: 0; }
  .wt-scene:nth-of-type(5) { opacity: 1; }
  .wt-type { width: auto; }
  .wt-cursor, .wt-ring { display: none; }
}

/* ——————————————————————————————————————————————————————
   首屏平台条。"支持哪些平台"是访客最早问的问题之一,原来它藏在 FAQ 最底下。
   放到首屏,而且**只列真有配方的那几个** —— 注册表里有 id 不等于能干活。
   用文字名而不是各家 logo:那些是别人的商标,画得再像也是仿的。
   —————————————————————————————————————————————————————— */
.plats {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px; margin: 20px auto 0;
}
.plats-cap { font-size: .76rem; color: var(--dim); }
.plat {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--card);
  font-size: .82rem; font-weight: 600; color: var(--text);
}
.plat i {
  width: 16px; height: 16px; border-radius: 5px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 800; font-style: normal; color: #fff;
}
/* 自己的色块 + 首字,**不是**各家的 logo。颜色只为区分,不模仿任何品牌标识。 */
.plat.p-xhs i { background: #cf3b4a; }
.plat.p-red i { background: #4f46e5; }
.plat.p-dy  i { background: #0f172a; border: 1px solid #334155; }
.plat.soon { color: var(--dim); }
.plat.soon i { background: #334155; }

/* 走查窗口里的平台页签 —— 让人一眼看出它是在真平台上干活 */
.wt-tabs { display: flex; gap: 5px; margin-left: auto; }
.wt-tab {
  padding: 2px 8px; border-radius: 6px;
  font-size: .62rem; color: #475569;
  border: 1px solid transparent;
}
.wt-tab.on { color: #67e8f9; border-color: rgba(34, 211, 238, .45); background: rgba(34, 211, 238, .1); }

/* 下载按钮里的规格小字 + 首次打开说明。
   说明这一段是**没签名的直接后果**:未经公证的包在 macOS 上报「已损坏」,
   那句话完全指不到签名上 —— 不写这段,每一次下载都是白费的。
   等证书办下来、公证做完,把 .firstrun 那一块整块删掉即可。 */
.btn small { display: block; margin-top: 2px; font-size: .72rem; font-weight: 500; opacity: .8; }
.firstrun {
  max-width: 640px; margin: 22px auto 0;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  text-align: left;
}
.firstrun p { margin: 0 0 8px; font-size: .86rem; line-height: 1.65; color: var(--muted); }
.firstrun p:last-child { margin-bottom: 0; }
.firstrun-t { font-weight: 700; color: var(--text) !important; }
.firstrun-x { font-size: .78rem !important; color: var(--dim) !important; }
.firstrun ol { margin: 0 0 8px; padding-left: 19px; font-size: .86rem; line-height: 1.6; color: var(--muted); }
.firstrun ol li { margin: 0 0 3px; }
/* 命令要能一键选中:这行字是给一个正卡在「已损坏」弹窗前、已经有点火的人看的,
   让他去手动选中一段带斜杠的命令、还不能多选到空格,是又一道流失。
   user-select: all —— 点一下整条命令就全选中了。 */
.firstrun code {
  display: inline-block; padding: 3px 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .8rem; color: var(--text);
  background: color-mix(in srgb, var(--text) 10%, transparent);
  border-radius: 5px; user-select: all; -webkit-user-select: all;
  /* 这条命令实测 286px 宽,而 360px 的手机上这个框的内宽只有约 296px —— 压线过,
     320px 的机器(SE 那一档)就溢出了。溢出的表现不是"命令看不全",是**整页能横向拖动**,
     所有段落都跟着错位。让它在自己的框里滚,不要把页面撑破。 */
  max-width: 100%; overflow-x: auto; vertical-align: bottom;
}


/* ─────────────────────── 手机档(≤ 560px) ───────────────────────
   原来最窄的断点是 720px,而手机是 375–430。在 375 上量到的三个真问题:

     · 顶栏 **111px 高**且 sticky —— 吃掉 812px 屏幕的 14%,而且它盖住了下面的内容
       (团队版的 ¥399 被截掉一半)。
     · 导航换行成两行,品牌被挤到第二行、和「下载」并排,看起来像坏掉了。
     · **13 个可点元素高度不足 44px**。44 是 Apple 和 Google 都给的最小触控尺寸,
       低于它的按钮在手机上是"看得见点不中"。

   做法不是加汉堡菜单 —— 这一页只有四个锚点,收成一行横向排列比藏进抽屉更好用。
   ───────────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  /* 顶栏收成两层但每层都矮:品牌+下载一行,锚点一行。总高从 111 降到 ~86。 */
  .nav {
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 8px 12px;
  }
  .brand { order: 1; flex: 0 0 auto; font-size: 18px; }
  .nav nav {
    order: 2;
    width: 100%;
    gap: 0;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  /* 锚点:靠 padding 把触控高度撑到 44,而不是靠字号 —— 字号一大就换行了。 */
  .nav nav a {
    font-size: 13px;
    padding: 11px 2px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  /* 「下载」和语言键提到品牌那一行,右对齐 */
  .nav nav .btn-sm,
  .nav nav .lang {
    position: absolute;
    top: 8px;
    min-height: 40px;
    display: flex;
    align-items: center;
  }
  /* **手机上不再 sticky。** 这个顶栏在 375 上量到 104px —— 一直粘着就等于永久少掉
     13% 的屏幕,而它提供的两件事(下载、锚点)在手机上都有替代:首屏就有「免费下载试用」
     大按钮,页面本身也不长。滚上去还能拿回来。 */
  .nav { position: static; }
  .nav nav .btn-sm { right: 78px; padding: 11px 14px; min-height: 44px; }
  .nav nav .lang { right: 16px; padding: 11px 10px; min-height: 44px; }
  /* 品牌本身也是可点的(回顶部),同样要够得着 */
  .brand { min-height: 44px; display: inline-flex; align-items: center; }

  /* 正文:窄屏下把左右留白收一点,别让每行只剩十来个字 */
  .section { padding-left: 16px; padding-right: 16px; }

  /* 主按钮在手机上铺满一行更好按 */
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; min-height: 48px; }

  /* 所有可点元素兜底到 44px */
  .btn, .btn-sm, .btn-lg { min-height: 44px; display: inline-flex;
    align-items: center; justify-content: center; }

  /* 页脚链接同样够得着 */
  .links a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 6px; }
}
