/* ============================================================
   SIGIL —— 设计系统
   第一版是照参考站 (app.hood.domains) 的实测令牌做的, 结果太像他们。现在拉成自己的:
     · 底 #E9EDE0 纸感冷绿白 —— 不是他们那种奶油黄
     · 面 #FAFCF4 比底亮一档 —— 页面有层次, 他们是一整片同色
     · 暗段 #12160D 把页面切开 —— 他们全站一片浅色
   保留的只有字号/字距/圆角这套比例 (那是做工, 不是身份)
   ============================================================ */

@font-face { font-family: 'Inter'; src: url('/fonts/inter-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/fonts/inter-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/fonts/inter-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/fonts/inter-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }

:root {
  /* 底色走"纸感冷绿白"而不是参考站那种奶油黄 —— 一眼能看出是两个不同的东西。
     面(卡片)比底亮一档, 页面有层次; 参考站是一整片同色, 我们不走那条路。 */
  --bg: #E9EDE0;
  --bg-soft: #E1E7D3;
  --panel: #F4F7EC;
  --white: #FAFCF4;
  --ink: #171B10;
  --ink-2: #4C5F2C;      /* 次级文字 / 链接: 深橄榄 */
  --muted: #77855E;
  --faint: #9DA98A;
  --line: #CDD6B9;
  --line-2: #B4C199;
  --lime: #C4F83D;
  --lime-dark: #B2E52A;
  --lime-soft: #E4F4BE;
  /* 暗色段 —— 参考站全站一片浅色, 我们用暗段把页面切开 */
  --dark: #12160D;
  --dark-2: #1C2214;
  --dark-line: #2E3722;
  --dark-ink: #E9EFDE;
  --dark-muted: #94A27B;
  --warn: #B26A00;
  --warn-soft: #FBF0D9;
  --bad: #A8351F;
  --bad-soft: #F9E7E2;
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-full: 999px;
  --shadow-inset: inset 0 1px 0 rgba(250,253,244,.72);
  --shadow-card: 0 1px 2px rgba(23,27,16,.05), 0 10px 26px -18px rgba(23,27,16,.22);
  --shadow-pop: 0 4px 12px rgba(23,27,16,.12);
  --sans: 'Inter', Arial, system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, SFMono-Regular, 'Cascadia Mono', Menlo, Consolas, monospace;
  --maxw: 1176px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
img { max-width: 100%; }
::selection { background: var(--lime); color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.stack { display: grid; gap: 14px; }
.row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.between { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.mono { font-family: var(--mono); font-size: .92em; }
.muted { color: var(--muted); }
.ink2 { color: var(--ink-2); }
.small { font-size: 13px; }
.tiny { font-size: 12px; }
.center { text-align: center; }
.hr { height: 1px; background: var(--line); border: 0; margin: 26px 0; }

/* ---------- 排版 ---------- */
h1, h2, h3 { margin: 0; font-weight: 550; letter-spacing: -.055em; }
h1 { font-size: clamp(32px, 4vw, 44px); line-height: 1.16; max-width: 650px; }
h2 { font-size: 28px; line-height: 1.2; letter-spacing: -.03em; }
h3 { font-size: 19px; line-height: 1.3; letter-spacing: -.02em; }
.lede { color: var(--ink-2); font-size: 16px; max-width: 62ch; margin: 10px 0 0; }

/* 小标签: 大写 mono, 宽字距 —— 跟参考站一致 */
.eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ''; width: 14px; height: 1px; background: var(--line-2); }
.eyebrow.plain::before { display: none; }

/* ---------- 顶栏 ---------- */
header.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(233,237,224,.93);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-top { display: flex; align-items: center; gap: 16px; padding: 14px 0 10px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 600; letter-spacing: -.02em; }
.brand .mark {
  width: 26px; height: 26px; border-radius: 7px; background: var(--lime);
  display: grid; place-items: center; font-weight: 700; font-size: 14px; color: var(--ink);
  box-shadow: var(--shadow-pop);
}
.brand .tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--faint); padding-left: 12px; border-left: 1px solid var(--line);
}
.nav-top .spacer { flex: 1; }
.nav-bottom { display: flex; align-items: center; gap: 4px; padding-bottom: 12px; }
.nav-bottom .spacer { flex: 1; }
.nav-link {
  display: inline-flex; align-items: center; gap: 7px; height: 40px; padding: 0 13px;
  border: 1px solid transparent; border-radius: var(--r-sm);
  font-size: 12px; color: var(--ink-2); transition: background .15s, border-color .15s, color .15s;
}
.nav-link:hover { background: rgba(250,253,244,.72); border-color: var(--line); color: var(--ink); }
.nav-link.on { background: var(--white); border-color: var(--line); color: var(--ink); font-weight: 500; box-shadow: var(--shadow-inset); }
.nav-link svg { width: 14px; height: 14px; opacity: .8; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--line-2); background: var(--white); color: var(--ink);
  border-radius: var(--r); padding: 0 18px; height: 44px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: background .15s, border-color .15s, transform .06s, box-shadow .15s;
  box-shadow: var(--shadow-inset);
}
.btn:hover:not(:disabled) { background: #fff; border-color: var(--muted); box-shadow: var(--shadow-card); }
.btn:active:not(:disabled) { transform: translateY(1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-lime { background: var(--lime); border-color: var(--lime); font-weight: 600; box-shadow: var(--shadow-pop); }
.btn-lime:hover:not(:disabled) { background: var(--lime-dark); border-color: var(--lime-dark); }
.btn-ghost { background: transparent; box-shadow: none; border-color: transparent; color: var(--ink-2); }
.btn-ghost:hover:not(:disabled) { background: rgba(250,253,244,.72); border-color: var(--line); color: var(--ink); }
.btn-sm { height: 34px; padding: 0 13px; font-size: 12px; border-radius: var(--r-sm); }
.btn-lg { height: 60px; padding: 0 32px; font-size: 16px; }
.btn-pill { border-radius: var(--r-full); }

/* ---------- 卡片 / 面板 ---------- */
.panel {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px; box-shadow: var(--shadow-inset);
}
.panel-soft { background: var(--panel); }
.panel-lime { border-color: #CBDDa5; border-color: #B9D290; background: linear-gradient(180deg, #F4F9E4, #EFF6E0); }
.panel-flat { box-shadow: none; }
.panel-xl { border-radius: var(--r-xl); }

/* ---------- 首屏 ---------- */
.hero {
  background:
    radial-gradient(760px 300px at 76% -90px, rgba(196,248,61,.28), transparent 68%),
    linear-gradient(180deg, #F6F9EE, #E6ECDA);
  border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 30px 34px 32px; box-shadow: var(--shadow-inset);
}
.hero-grid { display: grid; grid-template-columns: 1fr 320px; gap: 34px; align-items: start; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin-top: 16px; }

/* 搜索框: 60px 高, 全宽, 白底, 按钮嵌在右边 */
.searchbar {
  display: flex; align-items: center; gap: 10px; height: 60px;
  background: rgba(250,253,244,.96); border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 0 6px 0 0; box-shadow: inset 0 2px 5px rgba(23,27,16,.05);
  transition: border-color .15s, box-shadow .15s;
}
.searchbar:focus-within { border-color: var(--ink-2); box-shadow: 0 0 0 4px rgba(196,248,61,.28); }
.searchbar .ico { padding: 0 4px 0 16px; color: var(--faint); display: grid; place-items: center; }
.searchbar .ico svg { width: 18px; height: 18px; }
.searchbar input {
  flex: 1; min-width: 0; border: 0; background: transparent; outline: none;
  font-size: 18px; letter-spacing: -.01em; padding: 0;
}
.searchbar input::placeholder { color: var(--faint); }
.searchbar .tld { font-family: var(--mono); font-size: 14px; color: var(--muted); padding-right: 6px; }
.searchbar .btn { flex: 0 0 auto; height: 48px; border-radius: 9px; padding: 0 26px; }
.hero .hint { font-size: 12.5px; color: var(--muted); margin-top: 11px; }

/* ---------- 工具行 (三个入口, 竖线分隔) ---------- */
.tools { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-inset); overflow: hidden; }
.tools a { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-left: 1px solid var(--line); transition: background .15s; }
.tools a:first-child { border-left: 0; }
.tools a:hover { background: var(--lime-soft); }
.tools .t { font-size: 14px; font-weight: 500; }
.tools .d { font-size: 12px; color: var(--muted); margin-top: 2px; }
.tools .arrow { margin-left: auto; color: var(--faint); transition: transform .15s, color .15s; }
.tools a:hover .arrow { color: var(--ink); transform: translateX(2px); }
@media (max-width: 820px) { .tools { grid-template-columns: 1fr; } .tools a { border-left: 0; border-top: 1px solid var(--line); } .tools a:first-child { border-top: 0; } }

/* ---------- 名字卡 ---------- */
.grid-names { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1000px) { .grid-names { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .grid-names { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .grid-names { grid-template-columns: 1fr; } }

.ncard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  box-shadow: var(--shadow-inset); transition: border-color .15s, box-shadow .15s, transform .12s;
}
.ncard:hover { border-color: var(--muted); box-shadow: var(--shadow-card); transform: translateY(-1px); }
.ncard .idx { font-family: var(--mono); font-size: 10.5px; color: var(--faint); }
.ncard .nm { font-size: 16px; font-weight: 550; letter-spacing: -.03em; margin-top: 5px; word-break: break-all; }
.ncard .nm i { font-style: normal; color: var(--faint); font-weight: 400; }
.ncard .meta { font-family: var(--mono); font-size: 11px; color: var(--muted); white-space: nowrap; }
.ncard .arrow { color: var(--faint); transition: transform .15s, color .15s; }
.ncard:hover .arrow { color: var(--ink); transform: translateX(2px); }

/* ---------- 徽章 / 状态 ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--r-full);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase;
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-2);
}
.badge.ok { background: var(--lime-soft); border-color: #BBD58E; color: #3F5A12; }
.badge.warn { background: var(--warn-soft); border-color: #EED9AE; color: var(--warn); }
.badge.bad { background: var(--bad-soft); border-color: #EFCEC4; color: var(--bad); }
.badge.plain { background: transparent; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- 键值表 ---------- */
.kv { display: grid; grid-template-columns: 210px 1fr; }
.kv > div { padding: 14px 0; border-bottom: 1px solid var(--line); min-width: 0; }
.kv > div:nth-child(odd) { color: var(--muted); font-size: 13px; }
.kv > div:nth-child(even) { font-size: 14px; word-break: break-all; }
.kv > div:nth-last-child(-n+2) { border-bottom: 0; }
.kv > div:nth-last-child(-n+2) { padding-bottom: 0; }
@media (max-width: 640px) {
  .kv { grid-template-columns: 1fr; }
  .kv > div { padding-bottom: 0; border-bottom: 0; }
  .kv > div:nth-child(even) { padding-top: 2px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
}

/* ---------- 统计条 ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-inset); overflow: hidden; }
.stats > div { padding: 20px 22px; border-left: 1px solid var(--line); }
.stats > div:first-child { border-left: 0; }
.stats .n { font-size: 30px; font-weight: 550; letter-spacing: -.045em; line-height: 1.1; }
.stats .l { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } .stats > div:nth-child(3) { border-left: 0; } .stats > div:nth-child(n+3) { border-top: 1px solid var(--line); } }

/* ---------- 价格表 ---------- */
.prices { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--white); }
.price-row {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px;
  padding: 13px 16px; border-top: 1px solid var(--line); cursor: pointer; text-align: left;
  width: 100%; background: transparent; border-left: 0; border-right: 0; border-bottom: 0;
  transition: background .12s;
}
.price-row:first-child { border-top: 0; }
.price-row:hover { background: var(--lime-soft); }
.price-row.on { background: var(--lime-soft); box-shadow: inset 3px 0 0 var(--lime); }
.price-row .yr { font-size: 14px; font-weight: 500; }
.price-row .per { font-size: 12px; color: var(--muted); }
.price-row .total { font-size: 15px; font-weight: 550; letter-spacing: -.02em; text-align: right; }
.price-row .save { font-family: var(--mono); font-size: 10.5px; color: #3F5A12; background: var(--lime-soft); border: 1px solid #BBD58E; padding: 2px 7px; border-radius: var(--r-full); }
.price-row .save.none { visibility: hidden; }

/* ---------- 空态 / 加载 ---------- */
.empty { padding: 44px 22px; text-align: center; color: var(--muted); border: 1px dashed var(--line-2); border-radius: var(--r-lg); background: rgba(250,253,244,.5); }
.spin { display: inline-block; width: 13px; height: 13px; border: 2px solid var(--line-2); border-top-color: var(--ink-2); border-radius: 50%; animation: spin .7s linear infinite; vertical-align: -2px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 提示条 ---------- */
.note { border-radius: var(--r); padding: 14px 16px; font-size: 13.5px; background: var(--lime-soft); border: 1px solid #C2DA94; color: #3A5210; }
.note strong { font-weight: 600; }
.note.warn { background: var(--warn-soft); border-color: #EED9AE; color: #6B4400; }
.note.bad { background: var(--bad-soft); border-color: #EFCEC4; color: #7A2716; }
.note.plain { background: var(--white); border-color: var(--line); color: var(--ink); }

/* ---------- 清单 (激活三步) ---------- */
.check {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--white);
}
.check .num {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; background: var(--bg-soft); color: var(--muted); border: 1px solid var(--line);
}
.check.done .num { background: var(--lime); border-color: var(--lime); color: var(--ink); font-weight: 700; }
.check .t { font-size: 14px; font-weight: 500; }
.check .d { font-size: 12px; color: var(--muted); margin-top: 2px; }
.check .st { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--muted); white-space: nowrap; }
.check.done .st { color: #3F5A12; }

/* ---------- 页脚 ---------- */
footer { padding: 0 0 40px; }
.foot-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 26px 30px; box-shadow: var(--shadow-inset);
}
.foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col { min-width: 150px; }
.foot-col .l { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-bottom: 12px; }
.foot-col a { display: block; font-size: 13.5px; color: var(--ink-2); padding: 4px 0; }
.foot-col a:hover { color: var(--ink); }
.fine { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); max-width: 92ch; line-height: 1.7; }

/* ---------- 表格 ---------- */
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
th { text-align: left; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 0 0 10px; border-bottom: 1px solid var(--line); font-weight: 500; }
td { padding: 12px 0; border-bottom: 1px solid var(--line); }

/* ---------- 揭示 ---------- */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .45s ease, transform .45s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- 首屏解析动画 ---------- */
.resolver {
  background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 16px 18px; box-shadow: var(--shadow-card);
}
.rs-head { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.rs-head .dot { background: var(--faint); }
.rs-head.done .dot { background: #7DBE1E; }
.rs-head > span:last-child { margin-left: auto; letter-spacing: .04em; }
.rs-row { padding: 13px 0 4px; }
.rs-label { font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.rs-addr { font-size: 12.5px; color: var(--muted); word-break: break-all; }
.rs-name { font-size: 22px; font-weight: 550; letter-spacing: -.04em; color: var(--ink); word-break: break-all; transition: opacity .3s ease; min-height: 30px; }
.rs-flow { display: flex; gap: 4px; height: 9px; align-items: center; }
.rs-flow span { flex: 1; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.rs-flow span::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, var(--lime), transparent); transform: translateX(-100%); animation: sweep 1.6s linear infinite; }
.rs-flow span:nth-child(2)::after { animation-delay: .2s; }
.rs-flow span:nth-child(3)::after { animation-delay: .4s; }
@keyframes sweep { to { transform: translateX(100%); } }
.rs-foot { font-family: var(--mono); font-size: 10.5px; color: var(--muted); padding-top: 11px; border-top: 1px solid var(--line); line-height: 1.55; }
@media (prefers-reduced-motion: reduce) { .rs-flow span::after { animation: none; } }

/* ---------- 名字的链上画 ---------- */
.art { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 12px; box-shadow: var(--shadow-inset); }
.art img { display: block; width: 100%; height: auto; border-radius: 10px; }

/* ---------- 通用间距 ---------- */
section { padding: 26px 0; }
section.gap { padding-top: 40px; }
.stack-lg { display: grid; gap: 26px; }

/* ============================================================
   说明区 (首页下半段)
   物件图是实体渲染, 直接摆在奶油底上, 不加卡片不加边框 —— 参考站就是这么用的
   ============================================================ */
.band { padding: 56px 0 20px; }
.band .eyebrow { margin-bottom: 16px; }
.band h2 { max-width: 22ch; }
.band .lede { max-width: 54ch; margin-top: 14px; }

.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* 物件图: 不裁不框, 让它的背景和页面底色接上。
   art-publish.mjs 已经把每张图的底色调到和页面底色一致, 这里只需要把最外一圈再软化一点,
   消掉 JPEG 边缘可能剩下的一丝硬边。 */
.obj {
  display: block; width: 100%; height: auto;
  -webkit-mask-image: radial-gradient(125% 125% at 50% 49%, #000 88%, rgba(0,0,0,.6) 96%, transparent 100%);
  mask-image: radial-gradient(125% 125% at 50% 49%, #000 88%, rgba(0,0,0,.6) 96%, transparent 100%);
}
.obj-tall { max-width: 400px; margin: -30px auto; }
.obj-sm { max-width: 210px; margin: -10px auto 6px; }

/* 地址 → 名字 的对照 */
.swap { border: 1px solid var(--line); border-radius: var(--r-lg); background: rgba(250,253,244,.72); padding: 20px 22px; }
.swap .row2 { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.swap .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); margin-bottom: 7px; }
.swap .addr { font-family: var(--mono); font-size: 14px; color: var(--muted); word-break: break-all; }
.swap .name { font-size: 21px; font-weight: 550; letter-spacing: -.035em; word-break: break-all; }
.swap .arrow { color: var(--faint); font-size: 18px; }
@media (max-width: 620px) { .swap .row2 { grid-template-columns: 1fr; } .swap .arrow { display: none; } }

/* 三个卖点 */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; gap: 26px; } }
.feature h3 { font-size: 20px; letter-spacing: -.03em; margin-bottom: 8px; }
.feature p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.6; }
.feature .num { font-family: var(--mono); font-size: 10.5px; color: var(--faint); letter-spacing: .16em; }

/* 统计大字 (92% 那一段) */
.bigstat { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.bigstat .n { font-size: clamp(52px, 9vw, 96px); font-weight: 550; letter-spacing: -.06em; line-height: 1; }
.bigstat .n em { font-style: normal; color: var(--faint); }
.bigstat .cap { color: var(--ink-2); font-size: 15px; max-width: 34ch; }

/* 步骤 */
.steps4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.steps4 > div { background: var(--white); padding: 22px 20px; }
.steps4 .i { font-family: var(--mono); font-size: 10.5px; color: var(--faint); letter-spacing: .16em; }
.steps4 .t { font-size: 15px; font-weight: 550; letter-spacing: -.02em; margin: 10px 0 6px; }
.steps4 .d { font-size: 12.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 900px) { .steps4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps4 { grid-template-columns: 1fr; } }

/* 一句实话的横条 */
.truth { border-left: 2px solid var(--lime); background: var(--lime-soft); border-radius: 0 var(--r) var(--r) 0; padding: 16px 20px; font-size: 14px; color: #3A5210; }


/* ============================================================
   满幅暗段 —— 页面节奏的分水岭
   参考站全站是一片浅色, 一段暗的都没有。这一段是 SIGIL 自己的东西:
   把"大多数人漏掉的那一步"和实时统计压到黑底上, 数字才有重量。
   ============================================================ */
.bleed { width: 100%; }
.bleed-dark {
  background:
    radial-gradient(1300px 360px at 50% -140px, rgba(196,248,61,.09), transparent 72%),
    var(--dark);
  color: var(--dark-ink);
  padding: 76px 0 80px;
  margin: 54px 0 0;
}
.bleed-dark .eyebrow { color: var(--dark-muted); }
.bleed-dark .eyebrow::before { background: var(--dark-line); }
.bleed-dark h1, .bleed-dark h2, .bleed-dark h3 { color: var(--dark-ink); }
.bleed-dark .lede { color: var(--dark-muted); }
.bleed-dark .muted { color: var(--dark-muted); }
.bleed-dark .tiny, .bleed-dark .small { color: var(--dark-muted); }
.bleed-dark .mono { color: var(--lime); }
.bleed-dark .hr { background: var(--dark-line); }
.bleed-dark .bigstat .n { color: var(--dark-ink); }
.bleed-dark .bigstat .n em { color: #46532F; }
.bleed-dark .bigstat .cap { color: var(--dark-muted); }
.bleed-dark .btn { background: transparent; border-color: var(--dark-line); color: var(--dark-ink); box-shadow: none; }
.bleed-dark .btn:hover:not(:disabled) { background: var(--dark-2); border-color: var(--dark-muted); box-shadow: none; }
.bleed-dark .btn-ghost { border-color: transparent; }
.bleed-dark .btn-lime { background: var(--lime); border-color: var(--lime); color: #12160D; font-weight: 600; }
.bleed-dark .btn-lime:hover:not(:disabled) { background: var(--lime-dark); border-color: var(--lime-dark); }

/* 暗底上的统计条 */
.dark-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--dark-line); border: 1px solid var(--dark-line); border-radius: var(--r-lg); overflow: hidden; margin-top: 44px; }
.dark-stats > div { background: var(--dark); padding: 20px 22px; }
.dark-stats .n { font-size: 30px; font-weight: 550; letter-spacing: -.045em; line-height: 1.1; color: var(--dark-ink); }
.dark-stats .l { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--dark-muted); margin-top: 6px; }
@media (max-width: 700px) { .dark-stats { grid-template-columns: repeat(2, 1fr); } }

/* 暗底上的物件: 深底的图不校色, 边缘靠遮罩化开 */
.obj-ondark { max-width: 270px; margin: 18px auto 0; }

/* 暗段里的两栏 */
.dark-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .dark-split { grid-template-columns: 1fr; gap: 34px; } }
