/* ============================================================
   设计变量 —— Framer 设计语言:
   纯黑底 / 粗无衬线两行两色标题 / 大圆角细描边卡片 /
   蓝色为唯一强调色(发光 hero、关键句、主 CTA、发布成功)
   ============================================================ */
:root {
  --bg: #000;
  --ink: #f5f5f5;        /* 主文字,近白 */
  --body: #999;          /* 说明文字,中灰 */
  --dim: #666;           /* 弱化小字 */
  --line: #1a1a1a;       /* 卡片描边 */
  --card: #0d0d0d;       /* 卡片面 */
  --accent: #0055ff;     /* Framer 蓝 */
  --accent-soft: #3b7bff;
  --display: -apple-system, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --sans: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { background: var(--bg); }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }

.placeholder {
  border: 1px dashed var(--dim);
  color: var(--dim);
  padding: 0 .4em;
  border-radius: 4px;
  font-style: normal;
}

.screen {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 96px 28px;
}

/* ============================================================
   v8 卡片式堆叠:每屏一张 1200px 圆角卡,首屏可见;下屏盖上屏 + 上屏后退
   ============================================================ */
.stack { position: relative; max-width: 1200px; margin: 0 auto; }
.panel {
  position: sticky;
  top: 0;
  height: 100svh;
  background: transparent;   /* 透明:卡片缝里露出后退中的上一张卡,而非纯黑 */
  display: flex;
  align-items: center;
  justify-content: center;
  /* 上边固定下限 60px 保证任何屏高都能避开导航栏,底部收窄给卡片让高度;透明面板 → 不会因此露黑带 */
  padding: clamp(60px, 7.5svh, 86px) clamp(16px, 3vw, 40px) clamp(18px, 3svh, 36px);
}
.panel.is-hidden { visibility: hidden; }
/* 卡片填满整屏;浮起感靠 JS 的 transform:scale(<1) 露出四周黑边,
   下一张升上来是满格灰卡直接盖住,缝里露的是后退中的上一张卡而非纯黑 */
.card {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  background: #24242b;
  border: 1px solid #33333c;
  border-radius: 28px;
  box-shadow: 0 24px 70px -20px rgba(0, 0, 0, 0.9), 0 8px 24px -12px rgba(0, 0, 0, 0.7);
  padding: clamp(24px, 4.5vw, 56px) clamp(22px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform-origin: 50% 46%;
  will-change: transform, opacity;
}

/* 左右分栏(手机堆叠) */
/* 分栏一律竖排堆叠、整体垂直居中(讲师:所有左右的改上下) */
.split {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3.5vw, 38px);
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  text-align: left;
}
.split .col { min-width: 0; width: 100%; }
.split-stagger .col { display: flex; flex-direction: column; }

/* 三栏 */
.cols3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%; max-width: 780px; margin: clamp(14px,2.5vw,22px) auto; }
@media (max-width: 760px) { .cols3 { grid-template-columns: 1fr; gap: 12px; } }

/* 压 → 放 分级(卡片内文字) */
.card-dim .bl { color: #c2c2c2; }
.card-dim .bs, .card-dim .chain p { color: #737373; }
.card-darkest .bl { color: #9a9a9a; }
.card-darkest .bs { color: #616161; }
.card-bright .bl { color: #fff; }
.card-bright .bs { color: #d0d0d0; }

/* 屏2 你的一天(切碎 + 死循环合并成一屏,内容密,压内边距) */
.card-day { padding-top: clamp(20px, 3vw, 34px); padding-bottom: clamp(20px, 3vw, 34px); }
.card-day .bs { margin-top: clamp(5px, 1vh, 10px); }
.day-hit { margin-top: clamp(12px, 2.4vh, 26px); color: var(--ink) !important; }
.card-day .loop-wrap { margin-top: clamp(8px, 1.4vh, 16px); }

.loop-wrap { position: relative; width: min(300px, 70vw); }
/* 按视口高度缩放:矮窗不溢出,高窗(真实桌面)自动变大 */
.loop-wrap.loop-sm { width: clamp(195px, 23vh, 260px); }
.loop-svg { width: 100%; height: auto; display: block; overflow: visible; }
.loop-node rect { fill: #16161a; stroke: #3a3a44; stroke-width: 1.2; }
.loop-node text { fill: #e8e8ee; font-size: 15px; font-weight: 600; font-family: var(--sans); text-anchor: middle; }
.loop-orbit { transform-box: view-box; transform-origin: 50% 50%; animation: loop-spin 9s linear infinite; }
.loop-svg.spun .loop-orbit { animation-duration: 2.4s; }
.loop-arrows { opacity: .85; }
@keyframes loop-spin { to { transform: rotate(360deg); } }
.loop-anim .loop-node { opacity: .22; transition: opacity .5s ease; }
.loop-anim .loop-node.lit { opacity: 1; }
.loop-center { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; opacity: 0; transform: scale(.96); transition: opacity .9s var(--ease), transform .9s var(--ease); pointer-events: none; }
.loop-center.on { opacity: 1; transform: none; }
.loop-center b { font-family: var(--display); font-weight: 700; font-size: clamp(15px, 4vw, 20px); color: #fff; }

/* 屏5 间距 */
.sp { margin-top: 1.3em; }
.card-last .sp { margin-top: 1em; }

/* 屏6 命名 */
.card-name { }
.name-lead {
  font-size: clamp(16px, 4.4vw, 22px);
  color: var(--body);
  margin-bottom: clamp(14px, 3vw, 26px);
}
.name-line {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.02em;
  font-size: clamp(48px, 13vw, 96px);
  color: var(--accent-soft);
  text-shadow: 0 0 70px rgba(59, 123, 255, .4);
}

/* 屏1 Hero */
.card-hero .hero-split { align-items: flex-start; }
.col-lead .bl { text-align: left; }
.col-lead .bs { margin-top: 18px; text-align: left; }
.hero-more { margin-top: 26px; display: inline-block; }
.hook { margin-top: 16px; color: var(--ink); }
.hero-foot { margin-top: 26px; }
@media (max-width: 760px) {
  .col-lead .bl, .col-lead .bs { text-align: center; }
}

/* 屏7 动画卡 */
.card-demo { max-height: 100svh; gap: 14px; padding: clamp(20px,4vw,36px) 14px; }
.demo-lead, .demo-tail { color: var(--body); }
/* 手机/电脑界面里的文案按真实 App 左对齐(卡片外的 demo-lead/tail 仍居中) */
.demo-stage { text-align: left; }
.demo-stage .pub-toast { text-align: center; }
.card-demo .demo-stage { margin: 0; width: 100%; max-width: 1120px; height: auto; aspect-ratio: 16/9; max-height: 62svh; }
@media (max-width: 900px) {
  .card-demo .demo-stage { aspect-ratio: auto; height: min(560px, 60svh); }
}

/* 屏8 工具 vs 员工 */
.duo-tool .bs { color: #6f6f6f; }
.duo-tool .bl { color: #9a9a9a; }
.duo-emp .bs { color: var(--body); }
.duo-cap { margin-top: 12px; }
.card-duo .col { display: flex; flex-direction: column; gap: 8px; }
.card-duo .bs { line-height: 1.5; }

/* 屏9 CTA */
.card-cta .btn-cta { margin-top: 30px; }
.card-cta .bs.sp { margin-top: 1.1em; }

/* 屏10 学什么(三栏) */
.card-learn .bm { color: var(--ink); }
.learn-top .bs { margin-top: 10px; }
.lc {
  background: #30303a;
  border: 1px solid #26262b;
  border-radius: 18px;
  padding: 30px 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;   /* 顶对齐:三栏标题同高;高度随内容,grid 拉成等高,不留大空白 */
}
@media (max-width: 760px) { .lc { padding: 16px 18px; gap: 8px; } .lc b { font-size: 17px; } .lc span { font-size: 13.5px; line-height: 1.6; } }
.lc b { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--accent-soft); }
.lc span { font-size: 15px; line-height: 1.8; color: var(--body); }
.craft { display: flex; flex-direction: column; gap: 4px; }
.craft p { font-size: clamp(15px, 4vw, 19px); color: var(--body); line-height: 1.5; }
.craft b { color: var(--ink); font-weight: 600; }
.craft-end { margin-top: 8px; color: var(--ink) !important; font-weight: 600; }

/* 屏11 价格 */
.price-head { margin-bottom: clamp(18px,4vw,30px); }
.price-head .bm { color: var(--ink); }
.price-head .bs { margin-top: 8px; }
.price-cards { display: flex; flex-direction: row; gap: 16px; width: 100%; max-width: 760px; margin: 0 auto; }
.price-card { position: relative; flex: 1; background: #30303a; border: 1px solid #26262b; border-radius: 20px; padding: 26px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }
/* 主推卡:蓝光晕 + 高亮描边 */
.price-card.price-hot { border-color: #2a4a8c; box-shadow: 0 0 44px rgba(0,85,255,.16); }
.price-tag { position: absolute; top: 14px; right: 14px; background: var(--accent-soft); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 11px; border-radius: 999px; letter-spacing: .02em; }
/* 备选卡:收敛,不抢主推 */
.price-card.price-alt { background: #26262c; border-color: #23232a; }
.price-card.price-alt h3, .price-card.price-alt .price { color: var(--body); }
.price-btn.price-btn-ghost { background: transparent; color: var(--accent-soft); border: 1px solid #3a4668; }
.price-btn.price-btn-ghost:hover { background: rgba(59,123,255,.1); }
.price-card h3 { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--body); }
.price { font-family: var(--display); font-weight: 700; letter-spacing: -.02em; font-size: clamp(34px,7vw,46px); color: var(--ink); margin-top: 4px; line-height: 1.1; }
.price .placeholder { font-size: 20px; }
.price-lines { margin: 14px 0 20px; font-size: 14px; line-height: 1.7; color: var(--body); }
.price-lines b { color: var(--ink); font-weight: 600; }
/* 价格卡要点清单:小圆点、左对齐、整块居中 */
.price-feat { list-style: none; margin: 16px auto 22px; padding: 0; width: fit-content; max-width: 100%; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.price-feat li { position: relative; padding-left: 20px; font-size: 14px; line-height: 1.5; color: var(--body); }
.price-feat li b { color: var(--ink); font-weight: 600; }
.price-feat li::before { content: ""; position: absolute; left: 3px; top: .58em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-soft); }
.price-btn { margin-top: auto; align-self: center; text-decoration: none; background: var(--accent-soft); color: #fff; font-size: 14px; font-weight: 600; border-radius: 999px; padding: 10px 30px; }
.price-note { margin-top: 20px; }
@media (max-width: 640px) {
  .card.card-price { padding-top: 20px; padding-bottom: 20px; }
  .card-price .price-head { margin-bottom: 12px; }
  .card-price .price-head .bm { font-size: 20px; }
  .card-price .price-cards { gap: 10px; }
  .card-price .price-card { padding: 13px 15px; }
  .card-price .price-card h3 { font-size: 12.5px; }
  .card-price .price { font-size: 25px; margin-top: 2px; }
  .card-price .price-lines { margin: 6px 0 10px; font-size: 12px; line-height: 1.45; }
  .card-price .price-feat { margin: 8px auto 12px; gap: 6px; }
  .card-price .price-feat li { font-size: 12px; line-height: 1.4; padding-left: 16px; }
  .card-price .price-feat li::before { width: 4px; height: 4px; left: 2px; }
  .card-price .price-btn { padding: 7px 20px; font-size: 12.5px; }
  .card-price .price-note { margin-top: 10px; font-size: 12px; line-height: 1.4; }
}
@media (max-width: 640px) { .price-cards { flex-direction: column; } }

/* 屏12 关于我 + 进群 */
.me-col .bm { color: var(--ink); }
.me-col .bs { margin-top: 7px; }
.join-col { display: flex; flex-direction: column; align-items: center; }
.join-col .bm { color: var(--ink); }
.join-col .qr-box { margin: 10px 0; }
.card-last .qr-box { width: min(124px, 42vw); }
.site-foot { margin-top: clamp(16px,3vw,28px); text-align: center; font-size: 13px; color: var(--dim); }
.site-foot .footer-brand { font-family: var(--display); color: var(--body); }
.footer-sep { margin: 0 .6em; }
/* 页脚法律链接行 */
.foot-legal { display: block; margin-top: 10px; }
.foot-legal a { color: var(--dim); text-decoration: none; margin: 0 .7em; transition: color .2s var(--ease); }
.foot-legal a:hover { color: var(--body); }
.card-tight .bs { line-height: 1.55; }

/* ---- 定稿 10 屏:合并/改写屏的补充样式(全部居中) ---- */
/* 屏3 帮手 + AI员工命名(合并) */
.card-helper .name-lead { margin-bottom: clamp(6px, 1.4vw, 14px); }
.card-helper .name-line { font-size: clamp(40px, 11vw, 78px); }
/* 屏5 不止内容(是卖点不是痛点,读得清) */
.card-more .bl { color: #fff; }
.card-more .bs { color: var(--body); }
/* 屏6 工具 vs 员工(居中堆叠,压→放对比色) */
.card-duo2 .bs { color: var(--body); line-height: 1.55; }
.duo-tool-cap { color: #8f8f97; }
.duo-emp-cap { color: var(--accent-soft); text-shadow: 0 0 40px rgba(59,123,255,.3); }
/* 屏10 关于我 + 加群(合并,居中单列) */
.card-last .qr-box { width: min(120px, 40vw); margin: clamp(12px,2.5vw,20px) auto; }

/* 中等字号(卡内小标题) */
.bm {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: clamp(22px, 5.4vw, 32px);
  line-height: 1.3;
  color: var(--ink);
}

/* 左侧进度条(分组中性词,可点击跳转) */
.progress {
  position: fixed;
  /* 贴着卡片左边缘,而不是视口最左;窄屏回落到 12px */
  left: max(12px, calc((100vw - 1100px) / 2));
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
}
.progress button {
  display: flex; flex-direction: row-reverse; align-items: center; gap: 9px;   /* 圆点在左、文字往右展开 */
  border: none; background: none; cursor: pointer; padding: 2px 0;
  color: var(--dim); font-size: 11px; line-height: 1;
  transition: color .25s var(--ease);
}
.progress .p-label { opacity: 0; transform: translateX(-4px); transition: opacity .25s var(--ease), transform .25s var(--ease); white-space: nowrap; }
.progress .p-dot { width: 7px; height: 7px; border-radius: 50%; background: #3a3a3a; flex: none; transition: background .25s var(--ease), transform .25s var(--ease); }
.progress button.on { color: var(--ink); }
.progress button.on .p-dot { background: var(--accent-soft); transform: scale(1.35); }
.progress button.on .p-label, .progress button:hover .p-label { opacity: 1; transform: none; }
.progress button:hover .p-dot { background: #666; }
@media (max-width: 620px) {
  .progress { left: 9px; gap: 12px; }
  .progress .p-label { display: none; }
}

/* nav 满宽,品牌与"扫码"贴视口左右角(内容区仍限宽 1200) */
@media (prefers-reduced-motion: reduce) {
  .card { transform: none !important; opacity: 1 !important; }
}

/* ---------- 逐拍滚动(文案定稿:每个 ——— 是一个滚动断点) ---------- */
.chapter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.beat {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: min(860px, 100%);
}
.beat-pause { padding-bottom: 46svh; }   /* "白折腾"之后的大空白 */
.bl {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 8vw, 54px);
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
.bl + .bl { margin-top: .35em; }
.bs {
  font-size: clamp(16px, 4.6vw, 21px);
  color: var(--body);
  line-height: 1.6;
}
.bl + .bs { margin-top: 1.6em; }
.bs + .bs { margin-top: 1.1em; }
.bs + .bl { margin-top: 1.2em; }

/* 留白密度:前松后紧。屏1-5 每句一停;屏6-7 中等;屏8-11 收紧 */
.chapter-mid .beat { min-height: 62svh; }
.tight { text-align: center; }
.tight .bl + .bs, .tight .bs + .bs { margin-top: 30px; }
.tight .bs + .bl, .tight .price-cards + .bs { margin-top: 34px; }
.tight .bl + .bl { margin-top: 20px; }
.bl-sub { font-size: clamp(24px, 6.4vw, 40px); }
.tight .btn-cta { margin-top: 36px; }
.tight .me-card { margin-top: 40px; }
.tight .me-card + .bl { margin-top: 44px; }
.tight .qr-box { margin-top: 34px; }

/* 旧价格卡样式已删(与上方屏9价格块重复且覆盖了居中,见 git 记录) */
.price-note b { color: var(--ink); }
.price-bird { color: var(--ink); }

/* 压(屏1-4):低对比。放(屏5):亮。 */
.chapter-dim .bl { color: #b9b9b9; }
.chapter-dim .bs { color: #6e6e6e; }
.chapter-darkest .bl { color: #8f8f8f; }
.chapter-darkest .bs { color: #5c5c5c; }
.chapter-bright .bl { color: #fff; }
.chapter-bright .bs { color: #c9c9c9; }
.beat-turn .bl {                          /* 转折那一拍:亮起来 */
  color: #fff;
  font-size: clamp(38px, 10vw, 68px);
  text-shadow: 0 0 60px rgba(120, 160, 255, .35);
}
.beat-turn .accent-line { color: var(--accent-soft); }

/* ---------- 排版(Framer:粗无衬线、收紧字距、两行两色) ---------- */
.h-xl {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 9vw, 62px);
  line-height: 1.22;
  color: var(--ink);
  text-align: center;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.h-xl em, .h-lg em { font-style: normal; }
.h-xl .dim, .h-lg .dim { color: var(--dim); }   /* 两行两色的第二行 */
.lead {
  margin-top: 24px;
  font-size: clamp(15px, 4.2vw, 18px);
  text-align: center;
  color: var(--body);
  line-height: 1.7;
}
.micro { margin-top: 18px; font-size: 12px; color: var(--dim); letter-spacing: .12em; }
.gold { color: var(--accent-soft); }

/* Framer 式胶囊:深灰底、细描边(hero 建议条同款) */
.btn-ghost {
  margin-top: 40px;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  color: var(--ink);
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 11px 24px;
  transition: background .25s var(--ease);
}
.btn-ghost:hover { background: #222; }

/* 白底黑字主胶囊(对应 Framer 的 Sign up) */
.btn-pill-white {
  display: inline-block;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: #111;
  background: #fff;
  border-radius: 999px;
  padding: 8px 18px;
}

/* ---------- 屏1:hero(发光输入框是全站记忆点) ---------- */
.s1 { position: relative; }
.hero-input {
  margin-top: 44px;
  width: min(560px, 100%);
  border-radius: 18px;
  padding: 18px 18px 14px;
  background: #050a1e;
  border: 1px solid #3b6fff;
  box-shadow:
    0 0 0 1px rgba(120, 160, 255, .35) inset,
    0 0 26px rgba(0, 85, 255, .5),
    0 0 90px rgba(0, 85, 255, .28);
  text-align: left;
}
.hero-input-text { font-size: 15px; color: var(--ink); min-height: 3.2em; }
.hero-input-bar { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.hero-input-hint { font-size: 12px; color: #5f6f9a; }
.hero-send {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-send svg { width: 13px; height: 13px; }
.hero-chips { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; justify-content: center; }
.hero-chip {
  font-size: 13px;
  color: var(--ink);
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 7px 16px;
}
.hero-more {
  margin-top: 46px;
  font-size: 13px;
  color: var(--dim);
  text-decoration: none;
}
.hero-more:hover { color: var(--body); }

/* ---------- 通用:章节左对齐 + 卡片(Framer 语言) ---------- */
.h-lg {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 7vw, 46px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -.02em;
  text-align: left;
  text-wrap: balance;
}
.section-inner {                 /* 左对齐内容列 */
  width: min(860px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card-note {                     /* 卡片下方小标题+灰字(Framer 区块说明) */
  margin-top: 22px;
}
.card-note b { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.card-note p { font-size: 14px; color: var(--body); line-height: 1.7; }
.section-inner .lead { text-align: left; margin-top: 20px; }
.ta-c { text-align: center; }

/* ---------- 屏2:死循环 ---------- */
.loop-card {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 24px;
}
.loop-wrap { position: relative; width: min(380px, 86vw); }
.loop-svg { width: 100%; height: auto; display: block; overflow: visible; }
.loop-node rect {
  fill: #131316;
  stroke: #2c2c30;
  stroke-width: 1;
}
.loop-node text {
  fill: #f0f0f0;
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--sans);
  text-anchor: middle;
}
/* 圈在转:光弧 + 头部圆点绕轨道旋转,点亮后加速(越转越快) */
.loop-orbit {
  transform-box: view-box;
  transform-origin: 50% 50%;
  animation: loop-spin 12s linear infinite;
}
.loop-svg.spun .loop-orbit { animation-duration: 5s; }
@keyframes loop-spin { to { transform: rotate(360deg); } }
/* 桌面端逐环点亮(JS 加 .loop-anim / .lit) */
.loop-anim .loop-node { opacity: .22; transition: opacity .5s ease; }
.loop-anim .loop-node.lit { opacity: 1; }

/* 圈转起来后,中间浮出的两句(全站最重要的一句) */
.loop-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: scale(.96);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  pointer-events: none;
}
.loop-center.on { opacity: 1; transform: none; }
.loop-center b {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: clamp(17px, 4.6vw, 22px);
  color: #fff;
}

.loop-notes {
  margin-top: 36px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  font-size: 14px;
  color: var(--body);
}
.loop-notes b {
  color: var(--ink);
  font-weight: 700;
  margin-right: .8em;
  white-space: nowrap;
}
.loop-sink {
  margin-top: 38px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: clamp(18px, 5vw, 24px);
  color: var(--ink);
  text-align: left;
}
.loop-more {
  margin-top: 14px;
  font-size: 14px;
  color: var(--dim);
  text-align: left;
  max-width: 480px;
}

/* ---------- 屏6:工具 vs 员工(左右对比) ---------- */
.duo {
  display: flex;
  gap: 14px;
  width: min(720px, 100%);
}
.duo-card {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 20px;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.02em;
  font-size: clamp(19px, 5vw, 28px);
  line-height: 1.4;
  color: var(--dim);
}
.duo-card.duo-hire {
  color: #fff;
  border-color: #16233f;
  box-shadow: 0 0 50px rgba(0, 85, 255, .14);
}
.duo-card.duo-hire em { font-style: normal; color: var(--accent-soft); }
.beat .neng {                          /* "它能。"收得干脆 */
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 11vw, 72px);
  letter-spacing: -.02em;
  color: var(--accent-soft);
}


/* ---------- 屏7:核心动画 ---------- */
.demo-screen { padding-left: 16px; padding-right: 16px; }
.demo-title {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.02em;
  font-size: clamp(28px, 7vw, 46px);
  color: var(--ink);
  text-align: center;
}
.demo-stage {
  position: relative;
  margin-top: 36px;
  width: min(680px, 100%);
  height: min(640px, 80svh);
  overflow: hidden;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--line);
}
/* 桌面端:16:9 宽幅画面(同比例缩小,也是日后视频的画幅) */
@media (min-width: 900px) {
  .demo-stage {
    width: min(1080px, 100%);
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 82svh;
  }
  .desk-frame { width: min(640px, 100%); }
}
.demo-after { margin-top: 56px; }
.demo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2.5px) brightness(.85);
  transform: scale(1.08);          /* 遮住模糊边缘 */
  opacity: 0;
  transition: opacity 1s ease;
}
.bg-cafe { background-image: url('../assets/bg-cafe.jpg'); }
.bg-desk { background-image: url('../assets/bg-desk.jpg'); }
.demo-stage[data-scene="1"] .bg-cafe,
.demo-stage[data-scene="3"] .bg-cafe { opacity: 1; }
.demo-stage[data-scene="2"] .bg-desk { opacity: 1; }
.demo-stage::after {               /* 四周压暗,前景框始终清晰 */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(95% 85% at 50% 46%, transparent 60%, rgba(8,8,8,.45) 100%);
  pointer-events: none;
}

/* ===== 手机框(镜头1、3):深色聊天界面 ===== */
.demo-phone {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity .8s ease;
}
.demo-stage[data-scene="2"] .demo-phone { opacity: 0; pointer-events: none; }
.phone-frame {
  position: relative;                /* 锁屏层的定位基准 */
  width: min(258px, 64vw);
  aspect-ratio: 9 / 19;              /* 真实手机比例 */
  max-height: 92%;
  border-radius: 38px;
  border: 1.5px solid #454545;
  outline: 4px solid #1a1a1a;
  background: #101010;
  box-shadow: 0 24px 70px #000000b3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: filter .6s ease;
}
.demo-stage.phone-dim .phone-frame { filter: brightness(.32); }
.phone-status {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 4px;
}
.ps-time { font-size: 12px; font-weight: 600; color: #ddd; letter-spacing: .02em; }
.phone-island {
  position: absolute;
  left: 50%;
  top: 9px;
  transform: translateX(-50%);
  width: 74px;
  height: 18px;
  border-radius: 999px;
  background: #000;
}
.ps-icons { width: 46px; height: 12px; }
.phone-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px 9px;
  background: #17212b;
}
.pn-back { width: 10px; height: 16px; flex: none; }
.pn-ava {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: none;
  background: linear-gradient(145deg, #54a9eb, #2a6fb5);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pn-names { flex: 1; display: flex; flex-direction: column; line-height: 1.25; }
.pn-names b { font-size: 13.5px; font-weight: 600; color: #f1f4f7; }
.pn-names i { font-style: normal; font-size: 10.5px; color: #54a9eb; }
.pn-more { color: #7d8b99; font-size: 15px; }
.chat {
  flex: 1;
  padding: 12px 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #0e1621;
  overflow: hidden;
}
.chat-time { text-align: center; font-size: 10.5px; color: #5c6c7d; margin-bottom: 4px; }
.msg {
  display: flex;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
}
.msg.show { opacity: 1; transform: none; }
.msg.gone { display: none; }
.msg.me { justify-content: flex-end; }
.msg-bubble {
  max-width: 78%;
  padding: 7px 10px 6px;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1.5;
}
.msg.ai .msg-bubble { background: #182533; color: #eef2f6; border-bottom-left-radius: 4px; }
.msg.me .msg-bubble { background: #2b5278; color: #fff; border-bottom-right-radius: 4px; }
.msg-meta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9.5px;
  color: #7d97ad;
  margin-left: 8px;
  vertical-align: bottom;
  position: relative;
  top: 3px;
  white-space: nowrap;
}
.msg.me .msg-meta { color: #9fc1de; }
.msg-meta svg { width: 13px; height: 8px; color: #6ec2f7; }
.msg-card { display: flex; gap: 9px; align-items: center; padding: 9px 11px; }
.card-pic {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  flex: none;
  background: url('../assets/house-1.jpg') center / cover no-repeat;
}
.card-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.card-txt b { font-size: 11.5px; font-weight: 600; color: #eef2f6; line-height: 1.4; }
.card-txt i { font-style: normal; font-size: 10px; color: #7d97ad; }
.phone-input {
  display: flex;
  align-items: flex-end;                   /* 输入框随内容长高 */
  gap: 9px;
  padding: 8px 12px 14px;
  background: #17212b;
}
.pi-attach { width: 20px; height: 20px; flex: none; margin-bottom: 5px; }
.pi-field {
  flex: 1;
  background: #242f3d;
  border-radius: 16px;
  padding: 6px 12px;
  font-size: 12.5px;
  line-height: 1.55;
  color: #eef2f6;
  min-height: 1.5em;
  overflow: hidden;
}
.pi-ph { color: #6c7883; }
.phone-frame.typing .pi-ph { display: none; }
.pi-caret, .pt-caret, .pb-caret {
  display: none;
  width: 1.5px;
  height: 1.1em;
  background: #54a9eb;
  margin-left: 1px;
  animation: caret-blink .9s steps(1) infinite;
}
.typing .pi-caret { display: inline-block; }
@keyframes caret-blink { 50% { opacity: 0; } }
.pi-send {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2AABEE;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .4;
  transition: opacity .3s;
}
.pi-send svg { width: 14px; height: 14px; margin-left: 1px; }
.phone-frame.typing .pi-send { opacity: 1; }

/* 锁屏(快镜头:提醒) */
.phone-lock {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 14px;
  background: linear-gradient(180deg, #1c2438 0%, #12172a 45%, #0a0d18 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
}
.phone-lock.on { opacity: 1; }
.lock-island { width: 74px; height: 18px; border-radius: 999px; background: #000; }
.lock-time {
  margin-top: 34px;
  font-size: 46px;
  font-weight: 300;
  letter-spacing: .01em;
  color: #f2f5fa;
  line-height: 1;
}
.lock-date { margin-top: 8px; font-size: 12px; color: #9aa7bd; }
.lock-notif {
  margin-top: 26px;
  width: calc(100% - 22px);
  border-radius: 14px;
  background: rgba(38, 44, 58, .92);
  padding: 10px 12px;
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity .5s ease, transform .5s ease;
}
.lock-notif.on { opacity: 1; transform: none; }
.ln-head { display: flex; align-items: center; gap: 6px; }
.ln-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(145deg, #54a9eb, #2a6fb5);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ln-app { font-size: 11px; color: #dfe6ef; }
.ln-when { margin-left: auto; font-size: 10px; color: #8b96a8; }
.ln-body { margin-top: 7px; font-size: 12.5px; line-height: 1.5; color: #eef2f7; }

/* ===== 显示器框(镜头2):浏览器里的发布页 ===== */
.demo-desktop {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
  padding: 16px;
  z-index: 1;
}
.demo-stage[data-scene="2"] .demo-desktop { opacity: 1; }
.desk-frame {
  position: relative;
  width: min(560px, 100%);
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  background: #1b1b1d;
  box-shadow: 0 24px 70px #000000b3;
  overflow: hidden;
}
.mac-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px 8px;
  background: #232326;
}
.tl { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.tl-r { background: #ff5f57; }
.tl-y { background: #febc2e; }
.tl-g { background: #28c840; }
.mac-tab {
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1b1b1d;
  border-radius: 7px 7px 0 0;
  padding: 5px 14px 6px;
  font-size: 11px;
  color: #bbb;
  transform: translateY(4px);
}
.tab-fav { width: 11px; height: 11px; border-radius: 3px; background: #ff2442; flex: none; }
.addr-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: #1b1b1d;
  border-bottom: 1px solid #2a2a2c;
}
.addr-lock { width: 9px; height: 11px; flex: none; }
.addr-url { font-size: 11px; color: #9a9a9a; letter-spacing: .01em; }
.pub-page { position: relative; padding: 16px 18px 18px; background: #17171a; }
.pub-head { font-size: 14px; font-weight: 600; color: #e8e8e8; display: flex; align-items: center; gap: 10px; }
.pub-head-sub {
  font-size: 10.5px;
  color: #ff5b73;
  border: 1px solid #57272e;
  border-radius: 4px;
  padding: 1px 7px;
  font-weight: 400;
}
.pub-imgs { display: flex; gap: 8px; margin-top: 13px; }
.pimg, .pimg-add {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  flex: none;
}
.pimg {
  opacity: 0;
  transform: scale(.85);
  transition: opacity .4s ease, transform .4s ease;
}
.pimg.on { opacity: 1; transform: none; }
.pimg.p1 { background: url('../assets/house-1.jpg') center / cover no-repeat; }
.pimg.p2 { background: url('../assets/house-2.jpg') center / cover no-repeat; }
.pimg.p3 { background: url('../assets/house-3.jpg') center / cover no-repeat; }
.pimg-add {
  border: 1.5px dashed #3c3c40;
  color: #55555a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
}
.pub-title {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 14px;
  padding: 9px 2px;
  border-bottom: 1px solid #26262a;
  font-size: 12.5px;
  color: #ececec;
  white-space: nowrap;
  overflow: hidden;
}
.pt-text { flex: none; }
.pt-ph, .pb-ph { color: #4d4d52; }
.pub-title.typing .pt-ph, .pub-body.typing .pb-ph,
.pub-title.filled .pt-ph, .pub-body.filled .pb-ph { display: none; }
.pub-title.typing .pt-caret, .pub-body.typing .pb-caret { display: inline-block; }
.pt-caret, .pb-caret { background: #ff2442; }
.pt-count { margin-left: auto; font-size: 10.5px; color: #4d4d52; flex: none; padding-left: 10px; }
.pub-body {
  margin-top: 4px;
  padding: 9px 2px;
  min-height: 3.2em;
  font-size: 12.5px;
  line-height: 1.7;
  color: #cfcfd2;
}
.pub-tags { display: flex; gap: 8px; margin-top: 6px; }
.tag {
  font-size: 11px;
  color: #5b7599;
  background: #1d2126;
  border-radius: 5px;
  padding: 3px 9px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.tag.on { opacity: 1; transform: none; }
.pub-foot { display: flex; justify-content: flex-end; margin-top: 14px; }
.f-pub {
  border: none;
  background: #ff2442;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  padding: 9px 30px;
  pointer-events: none;
  transition: transform .12s ease, filter .2s ease, opacity .2s ease;
}
.f-pub.hover { filter: brightness(1.12); }
.f-pub.pressed { transform: scale(.94); }
.f-pub.done { opacity: .45; }
.pub-toast {                        /* 发布成功的一瞬:强调蓝 */
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translate(-50%, -16px);
  background: var(--accent-soft);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 20px;
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
  box-shadow: 0 8px 28px rgba(0, 85, 255, .4);
  pointer-events: none;
}
.pub-toast.on { opacity: 1; transform: translate(-50%, 0); }
.demo-cursor {
  position: absolute;
  width: 17px;
  height: 17px;
  left: 42%;
  top: 30%;
  transition: left 1.1s cubic-bezier(.5, .1, .3, 1), top 1.1s cubic-bezier(.5, .1, .3, 1);
  filter: drop-shadow(0 2px 4px #0009);
  z-index: 3;
}
.demo-note {
  font-size: 13px;
  color: #b9b9b9;
  letter-spacing: .14em;
  align-self: flex-end;
  text-shadow: 0 1px 8px #000;
}

/* reduced-motion / 无 JS:直接呈现镜头3的静态成品帧(快镜头气泡与锁屏不出现) */
.demo-stage.demo-static .msg { opacity: 1; transform: none; }
.demo-stage.demo-static .msg.extra { display: none; }
.demo-stage.demo-static[data-scene="1"] .bg-cafe { opacity: 1; }

/* ---------- 屏6:两个方块 ---------- */
.get-cards {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(860px, 100%);
}
.get-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
  text-align: left;
  background: var(--card);
  transition: border-color .3s var(--ease);
}
.get-card:hover { border-color: #2e2e2e; }
.get-card h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 8px;
}
.get-card p { font-size: 14px; }
.get-price {
  margin-top: 16px;
  display: inline-block;
  font-size: 13.5px;
  color: var(--ink);
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 5px 14px;
}
@media (min-width: 600px) {
  .get-cards { flex-direction: row; }
  .get-card { flex: 1; }
}

/* ---------- 屏7:主转化 CTA(强调蓝,Framer 主按钮) ---------- */
.btn-cta {
  margin-top: 44px;
  display: inline-block;
  text-decoration: none;
  background: var(--accent-soft);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border-radius: 999px;
  padding: 15px 40px;
  box-shadow: 0 0 26px rgba(0, 85, 255, .45), 0 0 80px rgba(0, 85, 255, .2);
  transition: transform .15s var(--ease), box-shadow .3s var(--ease);
}
.btn-cta:hover { box-shadow: 0 0 34px rgba(0, 85, 255, .6), 0 0 110px rgba(0, 85, 255, .3); }
.btn-cta:active { transform: translateY(1px); }
.btn-cta-price { font-weight: 400; font-size: 15px; }
.btn-cta .placeholder { border-color: #7fa4ff; color: #cdd9ff; }
.class-when { margin-top: 14px; font-size: 13px; color: var(--dim); }

/* ---------- 屏10:关于我(Framer 卡片:照片面板 + 文字) ---------- */
.me-card {
  display: flex;
  flex-direction: column;
  width: min(720px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
}
.me-photo {
  min-height: 240px;
  background:
    radial-gradient(120% 100% at 20% 0%, #1c1c1f 0%, #101012 55%, #0a0a0b 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.me-photo span { font-size: 11px; letter-spacing: .14em; color: #4a4a4e; }
.me-text {
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
}
.me-line { font-size: 15.5px; line-height: 1.9; color: var(--body); }
.me-same {
  margin-top: 22px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: clamp(21px, 5.6vw, 26px);
  color: var(--ink);
}
@media (min-width: 680px) {
  .me-card { flex-direction: row; align-items: stretch; }
  .me-photo { width: 44%; min-height: 260px; }
  .me-text { flex: 1; justify-content: center; }
}

/* ---------- 屏9:加群 ---------- */
.qr-box {
  margin-top: 40px;
  width: min(240px, 64vw);
  aspect-ratio: 1;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.qr-box img { width: 88%; height: 88%; object-fit: contain; }
.qr-box .qr-hint { display: none; position: absolute; color: var(--dim); font-size: 13px; letter-spacing: .1em; }
.qr-box.qr-empty img { display: none; }
.qr-box.qr-empty .qr-hint { display: block; }

/* ---------- 会员专区 ---------- */
.member-page {
  min-height: 100svh;
  padding: 140px 28px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gate { display: flex; flex-direction: column; align-items: center; text-align: center; }
.gate-note { margin-top: 16px; font-size: 14px; color: var(--dim); }
.gate-form { margin-top: 36px; display: flex; gap: 10px; }
.gate-input {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  color: var(--ink);
  font-size: 15px;
  padding: 12px 16px;
  width: min(220px, 52vw);
  outline: none;
}
.gate-input:focus { border-color: var(--dim); }
.gate-input.shake { animation: shake .4s; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.gate-btn {
  border: none;
  background: #fff;
  color: #111;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  padding: 12px 24px;
}
.gate-msg { margin-top: 18px; font-size: 13px; color: #c96a5a; min-height: 1.4em; }

.member-area { width: 100%; max-width: 560px; display: flex; flex-direction: column; gap: 20px; }
.member-area > .h-lg { margin-bottom: 16px; }
.member-section {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 20px;
  padding: 26px 24px;
}
.member-section h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}
.member-body { font-size: 14px; }
.section-locked-note { display: none; font-size: 14px; color: var(--dim); }
.member-section.section-locked .member-body,
.member-section.section-locked .qr-box { display: none; }
.member-section.section-locked h2 { color: var(--dim); }
.member-section.section-locked .section-locked-note { display: block; }
.member-section .qr-box { margin-top: 8px; }

/* ---------- 滚动淡入 ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 导航栏 ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 100%);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* 左右内边距对齐卡片可视边缘(卡片 = 列宽 - 面板侧距,再 scale 0.93 内缩 ~3.5%) */
  padding: 16px clamp(28px, 6vw, 79px);
  background: transparent;
}
.brand {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(12px, 3.2vw, 16px);
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.15;
  white-space: nowrap;
}
.brand .placeholder { font-size: 13px; padding: 4px 14px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  color: var(--body);
  transition: color .2s var(--ease);
}
.nav-links a:hover, .nav-links a:active { color: var(--ink); }
.nav-qr {                       /* 白胶囊,对应 Framer 的 Sign up */
  background: #fff;
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 600;
  color: #111 !important;
}

/* ---------- 页脚 ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 28px 56px;
  text-align: center;
  font-size: 13px;
  color: var(--dim);
}
.footer-brand { font-family: var(--display); margin-bottom: 10px; color: var(--body); }
.footer-sep { margin: 0 .6em; }

/* 法律页 */
.legal-page { max-width: 720px; margin: 0 auto; padding: clamp(88px,14vh,120px) 28px 80px; min-height: 60svh; }
.legal-page h1 { margin-bottom: 6px; }
.legal-page h2 { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--ink); margin: 32px 0 10px; }
.legal-page p { color: var(--body); line-height: 1.9; font-size: 15px; margin-bottom: 12px; }
.legal-page ul { margin: 0 0 12px; padding-left: 22px; color: var(--body); line-height: 1.9; font-size: 15px; }
.legal-page li { margin-bottom: 6px; }
.legal-page b, .legal-page strong { color: var(--ink); font-weight: 600; }
.legal-meta { color: var(--dim); font-size: 13px; margin-bottom: 26px; }
.legal-note { color: var(--body); line-height: 1.9; font-size: 15px; }
.legal-note a, .legal-page a[data-config], .legal-back { color: var(--accent-soft); text-decoration: none; }
.legal-back { display: inline-block; margin-top: 30px; font-size: 14px; color: var(--accent-soft); text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
