/* 苦力怕启动器官网 —— 中英两份 HTML 共用的全部样式。
 *
 * 视觉来源：Claude Design 项目 f086cbb2 的「官网.dc.html」/「Website EN.dc.html」。
 * 那两份稿子把样式全写成了内联 style（240+ 条），这里抽成语义类，一处改两站生效。
 *
 * ⚠️ 主绿是 #1f9d63，跟桌面端 app.css 的 --accent: #228965 **不是同一个值**，
 * 这不是笔误：桌面端为了浅色主题下白字的对比度把绿压暗了一档，官网按设计稿走。
 * 两者都源自苦力怕论坛主题色 #61cea8。**别顺手统一。**
 *
 * ⚠️ 原设计稿是 1440px 固定桌面稿，DC 运行时没有任何断点机制，移动端行为是空白。
 * 文件末尾那三档媒体查询是这里新加的，不是稿子里的东西。
 */

:root {
  --green: #1f9d63;
  --green-hover: #188352;
  --green-link-hover: #178552;
  --tint: #eaf6ef;

  --ink: #17171a;
  --ink-2: #3f3f44;
  --body: #5c5c61;
  --muted: #7c7c81;
  --faint: #98989d;
  --faint-2: #a8a8ad;
  --faint-3: #b6b6bb;
  --faint-4: #c0c0c5;

  --wash: #fafaf8;
  --wash-2: #f7f7f5;
  --wash-3: #fbfbf9;
  --line: #f0efec;
  --line-2: #f2f2f0;
  --line-3: #f4f4f1;
  --hair: rgba(0, 0, 0, .07);

  --dark: #17171a;
  --darker: #0f0f11;

  /* 实例/资源卡的四个装饰色，来自设计稿 */
  --c-blue: #4a5891;
  --c-green: #6b8f57;
  --c-gold: #a87c2e;
  --c-orange: #c0662b;
  --c-red: #c0392b;

  --shell: 1160px;
  --gutter: 40px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  /* 页面本身绝不允许横向滚动；要滚的东西自己套 .scroller */
  overflow-x: hidden;
}
html[lang="en"] body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-link-hover); }

img { max-width: 100%; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); }

/* 只给读屏用的跳过链接 */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: #fff; color: var(--ink); padding: 10px 16px; border-radius: 8px;
}
.skip:focus { left: 12px; top: 12px; box-shadow: 0 0 0 2px var(--green); }

/* ---------------- 顶栏 ---------------- */

.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.topbar .shell { height: 58px; display: flex; align-items: center; gap: 36px; }

.brand { display: flex; align-items: center; gap: 10px; flex: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 26px; height: 26px; border-radius: 7px; background: var(--green); flex: none; }
.brand-name { font-size: 14.5px; font-weight: 600; letter-spacing: -.01em; white-space: nowrap; }

.nav { flex: 1; min-width: 0; display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 13.5px; font-weight: 500; color: var(--body); white-space: nowrap; }
.nav a:hover { color: var(--ink); }

.topbar-right { display: flex; align-items: center; gap: 10px; flex: none; }
.lang { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--faint-2); }
.lang a { color: var(--body); font-weight: 500; }
.lang a:hover { color: var(--ink); }
.lang .on { color: var(--ink); font-weight: 600; }
.topbar-link { font-size: 13px; font-weight: 500; color: var(--body); }
.topbar-link:hover { color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 8px; font-weight: 600; white-space: nowrap;
  transition: background-color .16s ease, box-shadow .18s ease, color .16s ease;
}
.btn-sm { height: 32px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 44px; padding: 0 24px; font-size: 14.5px; border-radius: 10px; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-hover); color: #fff; }
.btn-ghost {
  background: #fff; color: var(--ink); font-weight: 500;
  box-shadow: 0 0 0 .5px rgba(0, 0, 0, .11);
}
.btn-ghost:hover { background: var(--wash-2); color: var(--ink); }

/* ---------------- Hero ---------------- */

.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #f7f8f6 0%, #ffffff 62%);
}
.hero-copy {
  padding-top: 82px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  animation: floatUp .5s cubic-bezier(.2, .7, .3, 1);
}
@keyframes floatUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.badge {
  display: flex; align-items: center; gap: 9px; height: 30px; padding: 0 14px;
  border-radius: 15px; background: #fff; box-shadow: 0 0 0 .5px rgba(0, 0, 0, .09);
  font-size: 12.5px; color: var(--body);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: none; }

.hero h1 {
  font-size: 60px; font-weight: 700; letter-spacing: -.036em; line-height: 1.08;
  margin: 26px 0 0; max-width: 820px; text-wrap: pretty;
}
.hero-sub {
  font-size: 17px; color: var(--body); line-height: 1.7;
  margin-top: 22px; max-width: 620px; text-wrap: pretty;
}
.hero-actions { display: flex; align-items: center; gap: 10px; margin-top: 30px; flex-wrap: wrap; justify-content: center; }
.hero-note { font-size: 12.5px; color: var(--faint-2); margin-top: 14px; }

/* ---------------- 界面 mock（Hero 那张大截图） ---------------- */

.shot-wrap { padding-top: 52px; padding-bottom: 90px; }
.shot {
  border-radius: 14px; overflow: hidden; background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .16), 0 0 0 .5px rgba(0, 0, 0, .09);
}
.shot-bar {
  height: 34px; background: var(--wash); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; padding: 0 14px; gap: 7px;
}
.shot-bar i { width: 10px; height: 10px; border-radius: 50%; background: #e4e4e0; }
.shot-body { display: flex; height: 502px; }

.shot-side {
  width: 180px; flex: none; background: var(--wash); border-right: 1px solid var(--line);
  padding: 14px 10px; display: flex; flex-direction: column; gap: 12px;
}
.shot-side-search { height: 26px; border-radius: 7px; background: var(--line); }
.shot-group { display: flex; flex-direction: column; gap: 2px; }
.shot-group-title {
  font-size: 9.5px; font-weight: 600; letter-spacing: .08em; color: var(--faint-4);
  text-transform: uppercase; padding: 0 8px 4px;
}
.shot-row {
  display: flex; align-items: center; gap: 9px; height: 28px; padding: 0 8px;
  border-radius: 6px; font-size: 11.5px; font-weight: 500; color: var(--faint);
}
.shot-row i { width: 13px; height: 13px; border-radius: 4px; background: #e2e2de; flex: none; }
.shot-row.on { background: var(--tint); color: var(--green); font-weight: 600; }
.shot-row.on i { background: var(--green); }

.shot-main { flex: 1; min-width: 0; padding: 24px 28px; display: flex; flex-direction: column; gap: 16px; }
.shot-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.shot-date { font-size: 10px; color: var(--faint-3); }
.shot-hello { font-size: 22px; font-weight: 700; letter-spacing: -.022em; margin-top: 4px; }

.shot-hero {
  border-radius: 11px; background: var(--c-blue); padding: 20px 22px;
  position: relative; overflow: hidden;
}
.shot-hero-art { position: absolute; right: 26px; top: 50%; transform: translateY(-50%); opacity: .16; color: #fff; }
.shot-kicker {
  font-size: 9px; font-weight: 700; letter-spacing: .07em;
  color: rgba(255, 255, 255, .66); text-transform: uppercase;
}
.shot-title { font-size: 21px; font-weight: 700; color: #fff; letter-spacing: -.02em; margin-top: 7px; }
.shot-meta { font-size: 10.5px; color: rgba(255, 255, 255, .7); margin-top: 6px; }
.shot-hero-actions { display: flex; gap: 7px; margin-top: 15px; }
.chip-white {
  height: 28px; display: flex; align-items: center; gap: 7px; padding: 0 15px;
  border-radius: 7px; background: #fff; font-size: 11.5px; font-weight: 600; color: var(--ink);
}
.chip-glass {
  height: 28px; display: flex; align-items: center; padding: 0 13px; border-radius: 7px;
  background: rgba(255, 255, 255, .15); color: #fff; font-size: 11.5px; font-weight: 500;
}

.shot-cols { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 20px; flex: 1; min-height: 0; }
.shot-col { display: flex; flex-direction: column; gap: 7px; }
.shot-col-title { font-size: 12px; font-weight: 600; }
.shot-item {
  display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 8px;
  background: var(--wash-3); box-shadow: inset 0 0 0 .5px var(--hair);
}
.shot-item .ico { width: 24px; height: 24px; flex: none; border-radius: 6px; }
.shot-item .grow { flex: 1; min-width: 0; }
.shot-item .name { font-size: 11px; font-weight: 500; }
.shot-item .sub { font-size: 9.5px; color: var(--faint-2); margin-top: 1px; }
.shot-play {
  width: 20px; height: 20px; flex: none; border-radius: 10px; background: var(--tint);
  display: flex; align-items: center; justify-content: center; color: var(--green);
}
.shot-tasks { padding: 12px; border-radius: 9px; background: var(--wash-2); display: flex; flex-direction: column; gap: 11px; }
.task-line { display: flex; align-items: center; gap: 8px; }
.task-name { flex: 1; min-width: 0; font-size: 10.5px; font-weight: 500; }
.task-pct { font-size: 9.5px; color: var(--faint-2); }
.bar { height: 3px; border-radius: 2px; background: #e6e5e1; margin-top: 7px; overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--green); }

.ellip { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------------- 通用章节 ---------------- */

.section { padding: 84px 0; }
.section-wash { border-top: 1px solid var(--line); background: var(--wash); }
.section-wide { padding: 88px 0; }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .07em;
  color: var(--green); text-transform: uppercase;
}
.h2 { font-size: 36px; font-weight: 700; letter-spacing: -.028em; line-height: 1.2; margin: 14px 0 0; text-wrap: pretty; }
.lede { font-size: 15px; color: var(--body); line-height: 1.7; margin-top: 14px; text-wrap: pretty; }
.narrow { max-width: 640px; }
.narrow-2 { max-width: 600px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 38px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 34px; }
.split { display: grid; gap: 64px; align-items: center; }
.split-ai { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
.split-servers { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
.split-faq { grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); align-items: start; }

/* ---------------- 功能卡 ---------------- */

.card {
  padding: 22px; border-radius: 13px; background: #fff;
  box-shadow: 0 0 0 .5px var(--hair);
  transition: box-shadow .18s ease;
}
.card:hover { box-shadow: 0 6px 20px rgba(0, 0, 0, .07), 0 0 0 .5px rgba(0, 0, 0, .1); }
.card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.card-title { font-size: 15.5px; font-weight: 600; margin-top: 16px; letter-spacing: -.008em; }
.card-body { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-top: 8px; text-wrap: pretty; }

.i-green { background: var(--tint); color: var(--green); }
.i-blue { background: #eef0f7; color: var(--c-blue); }
.i-gold { background: #f6ecdc; color: var(--c-gold); }
.i-grey { background: var(--line); color: var(--body); }
.i-red { background: #fdf1ef; color: var(--c-red); }

/* ---------------- AI 段 ---------------- */

.points { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.point { display: flex; gap: 12px; }
.point-tick {
  width: 20px; height: 20px; flex: none; border-radius: 10px; background: var(--tint);
  color: var(--green); display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.point-title { font-size: 14px; font-weight: 600; }
.point-body { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-top: 3px; text-wrap: pretty; }

.chatcard {
  border-radius: 13px; background: #fff; padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12), 0 0 0 .5px rgba(0, 0, 0, .09);
  display: flex; flex-direction: column; gap: 12px;
}
.bubble { padding: 10px 13px; border-radius: 11px; font-size: 13px; line-height: 1.6; text-wrap: pretty; }
.bubble-me { max-width: 78%; align-self: flex-end; background: var(--tint); }
.bubble-ai { max-width: 90%; align-self: flex-start; background: var(--wash-2); }

.confirm {
  border-radius: 12px; background: #fff; overflow: hidden; margin-top: 2px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12), 0 0 0 .5px rgba(0, 0, 0, .1);
}
.confirm-head { padding: 14px 16px 12px; display: flex; gap: 11px; }
.confirm-ico {
  width: 30px; height: 30px; flex: none; border-radius: 8px; background: var(--tint);
  color: var(--green); display: flex; align-items: center; justify-content: center;
}
.confirm-title { font-size: 13px; font-weight: 600; }
.confirm-sub { font-size: 11.5px; color: var(--muted); line-height: 1.5; margin-top: 4px; text-wrap: pretty; }
.confirm-items { padding: 0 16px 12px; display: flex; flex-direction: column; gap: 6px; }
.confirm-item {
  display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 9px;
  background: #f4faf6; box-shadow: inset 0 0 0 1px rgba(31, 157, 99, .24);
}
.confirm-item .tick {
  width: 14px; height: 14px; flex: none; border-radius: 4px; background: var(--green);
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.confirm-item .name { flex: 1; min-width: 0; font-size: 12px; font-weight: 500; }
.confirm-item .tag { font-size: 10.5px; color: var(--muted); flex: none; }
.confirm-foot {
  padding: 11px 16px; background: var(--wash); border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
}
.confirm-hint { flex: 1; font-size: 10.5px; color: var(--faint-2); }
.mini { height: 28px; display: flex; align-items: center; padding: 0 13px; border-radius: 7px; font-size: 11.5px; font-weight: 500; }
.mini-grey { background: var(--line); color: var(--ink-2); }
.mini-green { background: var(--green); color: #fff; font-weight: 600; padding: 0 15px; }

/* ---------------- 服务器段 ---------------- */

.servercard {
  border-radius: 13px; background: #fff; padding: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .1), 0 0 0 .5px rgba(0, 0, 0, .08);
  display: flex; flex-direction: column; gap: 8px;
}
.chips { display: flex; align-items: center; gap: 7px; margin-bottom: 4px; flex-wrap: wrap; }
.chip {
  height: 26px; display: flex; align-items: center; padding: 0 11px; border-radius: 13px;
  background: #fff; color: var(--body); font-size: 11px; font-weight: 500;
  box-shadow: 0 0 0 .5px rgba(0, 0, 0, .1);
}
.chip.on { background: var(--green); color: #fff; font-weight: 600; box-shadow: none; }
.server-row {
  display: flex; align-items: center; gap: 11px; padding: 11px; border-radius: 10px;
  box-shadow: inset 0 -1px 0 var(--line-3);
}
.server-row .ico { width: 34px; height: 34px; flex: none; border-radius: 8px; }
.server-row .grow { flex: 1; min-width: 0; }
.server-name { display: flex; align-items: center; gap: 7px; }
.server-name span { font-size: 12.5px; font-weight: 600; }
.online { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex: none; }
.server-meta { font-size: 10.5px; color: var(--faint-2); margin-top: 3px; }
.server-join {
  height: 26px; display: flex; align-items: center; padding: 0 12px; border-radius: 7px;
  background: var(--line); font-size: 11px; font-weight: 600; color: var(--green); flex: none;
}
.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 28px; max-width: 420px; }
.stat-value { font-size: 26px; font-weight: 700; letter-spacing: -.02em; }
.stat-label { font-size: 12.5px; color: var(--faint); margin-top: 4px; }

/* ---------------- 资源卡 ---------------- */

.content-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.content-card {
  border-radius: 12px; overflow: hidden; background: #fff;
  box-shadow: 0 0 0 .5px rgba(0, 0, 0, .08);
  transition: box-shadow .18s ease;
}
.content-card:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, .08), 0 0 0 .5px rgba(0, 0, 0, .11); }
.content-art { height: 104px; display: flex; align-items: center; justify-content: center; color: #fff; }
.content-art > * { opacity: .5; display: flex; }
.content-meta { padding: 14px 15px 16px; }
.content-name { display: flex; align-items: center; gap: 7px; }
.content-name > span { font-size: 13.5px; font-weight: 600; min-width: 0; }
.kind {
  height: 17px; display: flex; align-items: center; padding: 0 6px; border-radius: 9px;
  background: var(--line); color: var(--muted); font-size: 10px; font-weight: 600; flex: none;
}
.content-desc { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-top: 6px; text-wrap: pretty; }
.content-sub { font-size: 11px; color: var(--faint-2); margin-top: 9px; }

.letter { font-weight: 700; display: flex; align-items: center; justify-content: center; }
/* 设计稿里的 block()/hammer() 是三层绝对定位 div 拼的方块图形，不是 SVG */
.art-block { position: relative; }
.art-block i { position: absolute; background: #fff; border-radius: 2px; }
.art-block .b0 { inset: 0; border-radius: 10%; background: currentColor; opacity: .9; }
.art-block .b1 { left: 18%; top: 18%; width: 28%; height: 28%; opacity: .5; }
.art-block .b2 { right: 18%; bottom: 20%; width: 34%; height: 22%; opacity: .35; }
.art-hammer { position: relative; color: currentColor; }
.art-hammer i { position: absolute; background: currentColor; }
.art-hammer .h1 { left: 5%; top: 16%; width: 90%; height: 30%; border-radius: 6%; opacity: .9; }
.art-hammer .h2 { left: 38%; top: 46%; width: 24%; height: 42%; border-radius: 5%; opacity: .65; }

/* ---------------- 界面 mock 三卡 ---------------- */

.screen-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 0 0 .5px rgba(0, 0, 0, .08); }
.screen-mock {
  height: 196px; background: #fff; border-bottom: 1px solid var(--line-2);
  padding: 14px; display: flex; flex-direction: column; gap: 9px;
}
.screen-mock-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.screen-mock-title { font-size: 14px; font-weight: 700; letter-spacing: -.02em; }
.segmented { display: flex; padding: 2px; border-radius: 6px; background: var(--line); }
.seg {
  height: 19px; display: flex; align-items: center; padding: 0 8px; border-radius: 4px;
  font-size: 9.5px; font-weight: 500; color: var(--muted);
}
.seg.on { background: #fff; color: var(--ink); font-weight: 600; box-shadow: 0 0 0 .5px rgba(0, 0, 0, .08); }
.mock-row {
  display: flex; align-items: center; gap: 9px; height: 34px; padding: 0 8px;
  border-radius: 6px; box-shadow: inset 0 -1px 0 var(--line-3);
}
.mock-row.on { background: var(--wash-2); }
.mock-row .ico { width: 22px; height: 22px; flex: none; border-radius: 6px; }
.mock-row .grow { flex: 1; min-width: 0; }
.mock-row .name { font-size: 10.5px; font-weight: 500; }
.mock-row .sub { font-size: 9px; color: var(--faint-2); margin-top: 1px; }
.mock-play {
  height: 19px; display: flex; align-items: center; gap: 5px; padding: 0 8px; border-radius: 5px;
  background: var(--tint); color: var(--green); font-size: 9.5px; font-weight: 600; flex: none;
}
.mock-filters { display: flex; gap: 5px; flex-wrap: wrap; }
.mock-filter {
  height: 21px; display: flex; align-items: center; gap: 5px; padding: 0 8px; border-radius: 6px;
  background: var(--wash-2); color: var(--ink-2); font-size: 9.5px; font-weight: 500;
}
.mock-filter.on { background: var(--tint); color: var(--green); }
.mock-dl {
  display: flex; align-items: center; gap: 9px; padding: 7px 8px; border-radius: 7px;
  border: 1px solid #e8e8e4;
}
.mock-dl .ico { width: 24px; height: 24px; flex: none; border-radius: 6px; }
.mock-dl .grow { flex: 1; min-width: 0; }
.mock-dl .name { font-size: 10.5px; font-weight: 600; }
.mock-dl .sub { font-size: 9px; color: var(--faint-2); margin-top: 2px; }
.mock-install {
  height: 19px; display: flex; align-items: center; padding: 0 8px; border-radius: 5px;
  background: var(--line); color: var(--green); font-size: 9.5px; font-weight: 600; flex: none;
}
.mock-task { padding: 9px 10px; border-radius: 8px; background: var(--wash-3); box-shadow: inset 0 0 0 .5px var(--hair); }
.mock-task .ico { width: 18px; height: 18px; flex: none; border-radius: 5px; }
.mock-pill {
  height: 19px; display: flex; align-items: center; padding: 0 8px; border-radius: 5px;
  background: var(--line); font-size: 9.5px; font-weight: 500; color: var(--ink-2);
}
.screen-caption { padding: 14px 16px 16px; }
.screen-caption b { display: block; font-size: 13.5px; font-weight: 600; }
.screen-caption p { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin: 5px 0 0; text-wrap: pretty; }

.bg-blue { background: var(--c-blue); }
.bg-green { background: var(--c-green); }
.bg-gold { background: var(--c-gold); }
.bg-orange { background: var(--c-orange); }
.bg-mint { background: var(--green); }

/* ---------------- 社区 ---------------- */

.community-card {
  padding: 24px; border-radius: 13px; background: #fff;
  box-shadow: 0 0 0 .5px var(--hair);
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .18s ease;
}
.community-card:hover { box-shadow: 0 6px 20px rgba(0, 0, 0, .07), 0 0 0 .5px rgba(0, 0, 0, .1); }
.community-card .title { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.community-card .body { font-size: 13.5px; color: var(--muted); line-height: 1.65; flex: 1; text-wrap: pretty; }
.community-card .action { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--green); }
/* 社区区块只剩 GitHub 一张卡（论坛链接已全站移除，见 web/README.md）。
   单卡不铺满整行 —— 卡片内容只有三行，600px 宽正好跟上面 .narrow-2 的标题对齐。 */
.grid-1 { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; margin-top: 32px; max-width: 600px; }

/* ---------------- FAQ ---------------- */

.faq-list { display: flex; flex-direction: column; }
.faq-item { padding: 20px 0; box-shadow: inset 0 -1px 0 var(--line-2); }
.faq-q { font-size: 15px; font-weight: 600; letter-spacing: -.008em; }
.faq-a { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-top: 8px; max-width: 640px; text-wrap: pretty; }

/* ---------------- 下载 ---------------- */

.download { background: var(--dark); color: #fff; }
.download .shell { padding-top: 88px; padding-bottom: 88px; text-align: center; }
.download h2 { font-size: 40px; font-weight: 700; letter-spacing: -.03em; line-height: 1.2; margin: 0; text-wrap: pretty; }
.download-sub { font-size: 15px; color: rgba(255, 255, 255, .6); line-height: 1.7; margin: 14px auto 0; max-width: 640px; }
.platforms {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
  margin: 36px auto 0; max-width: 780px; text-align: center;
}
.platform {
  padding: 22px 18px; border-radius: 12px; background: rgba(255, 255, 255, .06);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  transition: background-color .16s ease;
}
.platform:hover { background: rgba(255, 255, 255, .11); }
.platform .glyph { color: rgba(255, 255, 255, .72); }
.platform .name { font-size: 14.5px; font-weight: 600; margin-top: 2px; }
.platform .meta { font-size: 11.5px; color: rgba(255, 255, 255, .44); }
.platform .dl { display: flex; flex-direction: column; gap: 7px; margin-top: 6px; width: 100%; align-items: center; }
.dl-btn {
  height: 30px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px;
  border-radius: 8px; background: var(--green); color: #fff; font-size: 12px; font-weight: 600;
  transition: background-color .16s ease;
}
.dl-btn:hover { background: #26b072; color: #fff; }
.dl-alt {
  height: 30px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px;
  border-radius: 8px; background: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .82);
  font-size: 12px; font-weight: 500;
  transition: background-color .16s ease;
}
.dl-alt:hover { background: rgba(255, 255, 255, .18); color: #fff; }
.dl-none {
  height: 24px; display: inline-flex; align-items: center; padding: 0 11px; border-radius: 12px;
  background: rgba(255, 255, 255, .1); font-size: 11px; font-weight: 600;
  color: rgba(255, 255, 255, .6); margin-top: 4px;
}
.platform .caveat { font-size: 10.5px; color: rgba(255, 255, 255, .4); line-height: 1.5; text-wrap: pretty; }
.download-foot { font-size: 12.5px; color: rgba(255, 255, 255, .38); margin-top: 22px; line-height: 1.7; }
.download-foot a { color: rgba(255, 255, 255, .62); text-decoration: underline; text-underline-offset: 2px; }
.download-foot a:hover { color: #fff; }

/* ---------------- 页脚 ---------------- */

.footer { background: var(--darker); color: rgba(255, 255, 255, .55); }
.footer .shell { padding-top: 52px; padding-bottom: 40px; }
.footer-cols { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .mark { width: 24px; height: 24px; border-radius: 6px; background: var(--green); }
.footer-brand .name { font-size: 14px; font-weight: 600; color: #fff; }
.footer-about { font-size: 13px; line-height: 1.7; margin-top: 14px; max-width: 300px; text-wrap: pretty; }
/* Minecraft 使用指南要求的免责声明。**这段必须读得清**——审核方会在页脚找它，
   所以对比度比旁边那些次要文字高一档（.45 而不是 .3），不要「顺手统一」回去。 */
.footer-disclaimer { font-size: 12px; color: rgba(255, 255, 255, .45); margin-top: 16px; line-height: 1.7; max-width: 340px; }
.footer-disclaimer .en { display: block; margin-top: 6px; font-size: 10.5px; letter-spacing: .02em; color: rgba(255, 255, 255, .38); }
.footer-col-title { font-size: 12.5px; font-weight: 600; color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.footer-links a { font-size: 13px; color: rgba(255, 255, 255, .55); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom, .footer-bottom a { font-size: 12px; color: rgba(255, 255, 255, .3); }

/* ---------------- 法务页（隐私政策 / 服务条款）----------------
 *
 * 这两页不在设计稿里，是为了过 Minecraft API 权限审核补的。样式刻意从简：
 * 一列正文、无插图、无卡片。审核方要的是「读得清、查得到、跟实现对得上」，
 * 不是好看。**改这两页的正文之前先读 README.md 顶部那条**——
 * 隐私政策里的每一句都必须与代码实现一致，写了不上传就真的不能上传。
 */

.legal { padding: 72px 0 96px; }
.legal .shell { max-width: 760px; }
.legal h1 { font-size: 34px; font-weight: 700; letter-spacing: -.028em; line-height: 1.25; margin: 0; }
.legal .updated { font-size: 12.5px; color: var(--faint); margin-top: 12px; }
.legal .lede { font-size: 15px; color: var(--body); line-height: 1.8; margin-top: 20px; text-wrap: pretty; }
.legal h2 {
  font-size: 19px; font-weight: 650; letter-spacing: -.014em; color: var(--ink);
  margin: 48px 0 0; padding-top: 26px; border-top: 1px solid var(--line);
}
.legal h3 { font-size: 14.5px; font-weight: 600; color: var(--ink-2); margin: 26px 0 0; }
.legal p, .legal li { font-size: 14px; color: var(--body); line-height: 1.85; text-wrap: pretty; }
.legal p { margin: 12px 0 0; }
.legal ul { margin: 12px 0 0; padding-left: 20px; }
.legal li { margin-top: 7px; }
.legal li::marker { color: var(--faint-3); }
.legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px; background: var(--wash-2); border-radius: 4px; padding: 1px 5px;
  /* 长路径 / 长域名在 390px 宽下必须能断，否则整页横向滚 */
  word-break: break-all;
}
.legal .callout {
  margin-top: 18px; padding: 16px 18px; border-radius: 11px;
  background: var(--tint); box-shadow: 0 0 0 .5px rgba(31, 157, 99, .16);
}
.legal .callout p { margin: 0; color: var(--ink-2); }
.legal .callout p + p { margin-top: 9px; }
.legal .warn { background: var(--wash-2); box-shadow: 0 0 0 .5px var(--hair); }
.legal .warn p { color: var(--ink-2); }
.legal .back { display: inline-block; margin-top: 44px; font-size: 13.5px; }

/* =========================================================================
 * 响应式。原设计稿是 1440px 固定桌面视图，以下三档全是新增的。
 * 判据只有一条：任何宽度下 body 都不许横向滚动。
 * ========================================================================= */

/* 界面 mock 是像素级摆出来的，压不动 —— 让它整体横向滚，而不是内部塌掉 */
.scroller { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.scroller > * { min-width: 900px; }

@media (max-width: 1040px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-ai, .split-servers, .split-faq { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  /* 服务器段的稿子是「左卡片右文案」，堆叠后文案要在上面才读得通 */
  .split-servers .order-copy { order: -1; }
  .content-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero h1 { font-size: 46px; }
}

@media (max-width: 860px) {
  .shot-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .shot-scroll > .shot { min-width: 900px; }
  .screens-grid { grid-template-columns: minmax(0, 1fr); }
  .platforms { grid-template-columns: minmax(0, 1fr); max-width: 420px; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .nav { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .topbar .shell { gap: 14px; }
  .brand-name { font-size: 13.5px; }
  .nav { gap: 18px; }
  .topbar-link { display: none; }
  .hero-copy { padding-top: 56px; }
  .hero h1 { font-size: 34px; letter-spacing: -.028em; }
  .hero-sub { font-size: 15.5px; }
  .hero-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .shot-wrap { padding-top: 36px; padding-bottom: 56px; }
  .section, .section-wide { padding: 56px 0; }
  .h2 { font-size: 26px; }
  .legal { padding: 48px 0 64px; }
  .legal h1 { font-size: 26px; }
  .download h2 { font-size: 30px; }
  .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bubble-me, .bubble-ai { max-width: 100%; }
}
