:root {
  color-scheme: dark;
  --ink: #080a09;
  --ink-2: #0f1210;
  --paper: #080a09;
  --white: #121613;
  --surface: #0f1210;
  --surface-raised: #151916;
  --line: #29302b;
  /* 正文色单独立一个 token：--paper/--white 翻成暗色后成了背景色，
     再被当文字色引用就会深字压深底。值取自 body 已选定的 #f1f4ee，不改任何既有色值。 */
  --text: #f1f4ee;
  --muted: #8d9790;
  --muted-light: #535c56;
  --lime: #c9ff43;
  --lime-dark: #87b300;
  /* #87b300 在浅底上只有 2.26:1，做描边/背景没问题，当文字色就读不清了 */
  --lime-text: #c9ff43;
  --coral: #ff705d;
  /* 次强调色。原来是青绿 #56d8c5，在黑+柠檬绿的底子上读起来发蓝，
     换成同族的中绿：跟 --lime 拉得开（那个偏黄），但仍在绿系里。 */
  --aqua: #8ede72;
  /* 更深一档的绿，用在需要压住的标记上（原来是 var(--moss) 那类深青） */
  --moss: #4f9a52;
  --amber: #f6b84a;
  --content: min(1180px, calc(100vw - 48px));
  --header-height: 70px;
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-synthesis: none;
  /* ===== 设计 token 层（2026-08-17 统一审美收敛）=====
     以下 token 是全站唯一合法的字号/间距/圆角/发丝线来源。
     新增样式禁止手写魔法数——先想角色，再取 token。 */

  /* 字体族（mono 之前有 5 种写法，裸 monospace 在 Chrome 掉 Courier）*/
  --font-sans: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;

  /* 字号刻度：9 固定档 + 4 流式档（原 67 种 → 13 种）*/
  --fs-2xs: 10px;  /* 微标注/图例/脚注 */
  --fs-xs: 11px;   /* kicker、表头、chip */
  --fs-sm: 12.5px; /* 表格单元格、caption、说明 */
  --fs-md: 14px;   /* 正文、按钮 */
  --fs-lg: 16px;   /* lede、输入框（≥16 防 iOS 聚焦缩放）*/
  --fs-xl: 19px;   /* 卡片标题 h3 */
  --fs-2xl: 23px;  /* 面板级 h2、中号数字 */
  --fs-3xl: 28px;  /* 大号数据数字 */
  --fs-4xl: 34px;  /* 特大数字/固定大标题 */
  --fs-h2: clamp(23px, 2.4vw, 32px);      /* 全站 section h2 唯一尺寸 */
  --fs-hero: clamp(27px, 3vw, 42px);      /* 页面 h1 唯一尺寸 */
  --fs-display: clamp(36px, 4.5vw, 56px); /* 海报时刻（体检结果等）*/
  --fs-mega: clamp(52px, 8vw, 104px);     /* OPENBIT. 字标 / 股票代码巨号 */

  /* 行高 6 档（原 35 种）*/
  --lh-display: .9; --lh-tight: 1.1; --lh-heading: 1.25;
  --lh-snug: 1.45; --lh-body: 1.7; --lh-loose: 1.85;

  /* 字距 4 档（原 26 种）*/
  --track-wide: .18em; --track-label: .08em;
  --track-tight: -.02em; --track-display: -.03em;

  /* 间距刻度 + 韵律 */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --band-pad: clamp(56px, 4vw + 40px, 96px);      /* 顶级 band 上下，全站唯一 */
  --band-pad-hero: clamp(44px, 3vw + 20px, 64px); /* hero 顶部贴 header 收一档 */
  --head-gap: 32px;   /* section 头块 → 内容 */
  --card-pad: 24px; --card-pad-lg: 32px; --card-pad-xl: 48px;
  --grid-gap: 16px; --col-gap: clamp(40px, 5vw, 64px);
  --row-pad-sm: 10px; --row-pad: 14px; --row-pad-lg: 22px;

  /* 圆角 3 档（原 15 种；999px/50% 仅 pill 与头像）*/
  --r-s: 3px; --r-m: 6px; --r-l: 10px;

  /* 发丝线与文字梯（黑区白线两档 + 次级正文）*/
  --line-soft: rgba(241,244,238,.1);
  --line-strong: rgba(241,244,238,.26);
  --text-2: rgba(241,244,238,.72);

  /* 语义色补充（bearish 文字色 15 处早已在用未立 token；amber 文字同理）*/
  --coral-text: #ff8f82; --amber-text: #f5bf4f; --lime-hover: #d9ff74;

}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

mark {
  background: transparent;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: .18em;
  text-underline-offset: .05em;
}

.content-width {
  width: var(--content);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid rgba(241,244,238,.14);
  background: rgba(8,10,9,.94);
  backdrop-filter: blur(14px);
}

/* 品牌标（2026-08-17 换 CEO 定稿的 lockup 素材包，见 docs/BRAND.md）。
   顶栏用带阴影横版锁定（图形标+字标+副标），手机窄屏只留图形标。 */
.brand {
  display: inline-flex;
  align-items: center;
}

/* 锁宽不锁高：副标变体视框 356×72、compact 356×52，统一宽度才能让
   字标在带副标/无副标的页面之间光学等大（锁高会让 compact 的字标偏大）。 */
.brand-lockup {
  display: block;
  width: 139px;
  height: auto;
}

.brand-glyph {
  display: none;
  height: 22px;
  width: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

/* 两层标签：中文是地名，下面那行 mono 英文是这一格的专业身份。
   顶栏是全站唯一一处不用解释就能表达自己是什么的地方，用满它。 */
.main-nav a {
  position: relative;
  padding: 16px 0 14px;
  color: rgba(241,244,238,.64);
  font-size: var(--fs-md);
  font-weight: 700;
  line-height: var(--lh-heading);
  text-align: center;
}

.main-nav a span {
  display: block;
}

.main-nav a small {
  display: block;
  margin-top: 3px;
  color: rgba(241,244,238,.26);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: var(--track-wide);
  transition: color .18s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a:hover small {
  color: var(--lime-dark);
}

.main-nav a.active small {
  color: var(--lime);
}

.main-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--lime);
  content: "";
}

.header-actions,
.hero-actions,
.result-actions,
.share-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.source-status,
.mode-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 700;
  white-space: nowrap;
}

.source-status i,
.mode-badge i,
.monitor-state i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(246,184,74,.14);
}

.source-status.live i,
.mode-badge.live i,
.monitor-state i {
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(142,222,114,.13);
}

.source-status.degraded i,
.mode-badge.degraded i {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,112,93,.14);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid rgba(241,244,238,.26);
  border-radius: var(--r-m);
  cursor: pointer;
  font-size: var(--fs-md);
  font-weight: 800;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.button-primary {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--lime-hover);
}

.button-secondary {
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  background: rgba(241,244,238,.1);
}

.button-inverse {
  border-color: rgba(241,244,238,.4);
  background: transparent;
  color: var(--text);
}

.button-small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: var(--fs-sm);
}

.button-large {
  min-height: 56px;
  padding-inline: 24px;
  font-size: var(--fs-lg);
}

.button-full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: transparent;
  cursor: pointer;
  font-size: var(--fs-2xl);
}

.eyebrow {
  margin: 0 0 var(--sp-3);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
}

/* section 语境下的 kicker 统一提为 lime-dark（呼应首页 .ob-num），hero 语境保持 muted */
.section-heading .eyebrow {
  color: var(--lime-dark);
}

.home-hero {
  display: grid;
  width: min(1320px, calc(100vw - 48px));
  min-height: calc(100vh - var(--header-height) - 78px);
  max-height: 820px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding: var(--band-pad-hero) 0 var(--band-pad);
}

.home-copy {
  max-width: 750px;
}

.home-copy h1,
.tool-hero h1,
.page-hero h1,
.register-page h1 {
  margin: 0;
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: var(--lh-heading);
}

.hero-lede,
.tool-hero > div > p:last-child,
.page-hero > p:last-child {
  max-width: 680px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: var(--fs-xl);
  line-height: var(--lh-body);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(201,255,67,.35);
  font-size: var(--fs-md);
  font-weight: 800;
}

.text-action.light {
  border-color: var(--lime);
  color: var(--text);
}

.text-action span {
  color: var(--lime-text);
  font-size: var(--fs-xl);
}

.hero-proof {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  padding: var(--card-pad-lg);
  border-radius: var(--r-m);
  background: var(--ink);
  color: var(--text);
  box-shadow: 18px 20px 0 var(--lime);
}

.hero-proof::before {
  position: absolute;
  top: 80px;
  right: -74px;
  width: 210px;
  height: 1px;
  background: var(--muted-light);
  content: "";
  transform: rotate(38deg);
}

.proof-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.proof-top b {
  color: var(--lime);
  font-family: var(--font-mono);
}

.hero-proof > p {
  margin: 54px 0 36px;
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: var(--lh-heading);
}

.hero-proof > p strong {
  color: var(--lime);
}

.proof-map {
  display: grid;
  min-height: 210px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  align-items: center;
  gap: 13px;
}

.proof-map span {
  position: relative;
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.proof-map .proof-core {
  grid-row: 1 / span 2;
  min-height: 176px;
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  writing-mode: vertical-rl;
}

.hero-proof > small {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  line-height: var(--lh-body);
}

.live-band {
  min-height: 440px;
  padding: var(--band-pad) 0;
  background: var(--ink);
  color: var(--text);
}

.live-inner {
  display: grid;
  grid-template-columns: minmax(0, .83fr) minmax(0, 1.17fr);
  gap: var(--col-gap);
}

.live-summary > div:first-child,
.stock-meta,
.result-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 52px;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.live-summary .eyebrow {
  color: var(--muted);
}

.live-summary h2 {
  margin: 0 0 32px;
  font-size: var(--fs-h2);
  line-height: var(--lh-tight);
}

.live-drivers,
.story-list,
.contribution-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.story-tickers,
.axis-values {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.story-tickers span {
  padding: 4px 7px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-s);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 800;
}

.product-section {
  padding: var(--band-pad) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: var(--head-gap);
}

.section-heading h2 {
  margin: 0;
  font-size: var(--fs-h2);
  line-height: var(--lh-tight);
}

.section-heading > p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.product-item {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--card-pad-lg);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: var(--white);
}

.product-item.featured {
  border-color: var(--ink);
  background: var(--lime);
}

.product-item > span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 800;
}

.product-item h3 {
  margin: 62px 0 12px;
  font-size: var(--fs-4xl);
}

.product-item p {
  margin: 0;
  color: var(--muted);
  line-height: var(--lh-body);
}

.product-item b {
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  font-size: var(--fs-md);
}

.page-hero,
.tool-hero,
.monitor-hero {
  width: var(--content);
  margin: 0 auto;
}

.page-hero {
  padding: var(--band-pad-hero) 0 var(--band-pad);
}

.page-hero.compact {
  max-width: 1040px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
}

.market-page {
  padding-bottom: 120px;
}

/* 盘面三卡这一块下面紧跟着市场地图那条深色带，深色带自己带 band-pad，
   这里再留 120px 就是两段留白叠着。 */
.market-pulse-block {
  padding-bottom: 0;
}

.tool-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 70px;
  padding: var(--band-pad-hero) 0 var(--band-pad);
}

.tool-hero h1 {
  font-size: var(--fs-hero);
}

.tool-hero > div > p:last-child {
  max-width: 730px;
  margin-bottom: 0;
}

.tool-promise {
  display: grid;
  min-width: 190px;
  gap: 1px;
  background: var(--line);
}

.tool-promise span {
  padding: 15px 18px;
  background: var(--white);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.portfolio-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .65fr);
  gap: var(--grid-gap);
  padding-bottom: 90px;
}

.portfolio-form,
.workbench-preview,
.monitor-picker {
  padding: var(--card-pad-lg);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: var(--white);
}

.form-heading {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--r-s);
  background: var(--lime);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 800;
  color: var(--ink);
}

.form-heading h2 {
  margin: 0 0 6px;
  font-size: var(--fs-2xl);
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  line-height: var(--lh-snug);
}

.portfolio-form label,
.monitor-picker label,
.demo-register label,
.stock-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.portfolio-form textarea,
.monitor-picker input,
.demo-register input,
.stock-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  outline: none;
  background: var(--surface-raised);
  color: var(--text);
}

.portfolio-form textarea {
  min-height: 190px;
  padding: 18px;
  resize: vertical;
  font-family: var(--font-mono);
  font-size: var(--fs-lg);
  line-height: var(--lh-body);
}

.portfolio-form textarea:focus,
.monitor-picker input:focus,
.demo-register input:focus,
.stock-search input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(201,255,67,.5);
}

.quick-tickers {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 26px;
}

.quick-tickers button,
.monitor-option {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.quick-tickers button:hover,
.monitor-option:hover,
.monitor-option.selected {
  border-color: var(--ink);
  background: var(--lime);
  /* lime 底必须配墨字：继承的 --text 近白，压上去等于看不见（2026-08-18 CEO 截图）*/
  color: var(--ink);
}

.sample-link {
  display: block;
  margin: 15px auto 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: var(--fs-sm);
}

.form-error {
  padding: 11px 13px;
  border-left: 3px solid var(--coral);
  background: rgba(255,112,93,.08);
  color: #ff8f82;
  font-size: var(--fs-md);
}

.workbench-preview {
  background: var(--ink);
  color: var(--text);
}

.workbench-preview .eyebrow {
  color: var(--lime);
}

.workbench-preview blockquote {
  margin: 45px 0;
  font-size: var(--fs-3xl);
  font-weight: 800;
  line-height: var(--lh-snug);
}

.workbench-preview ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workbench-preview li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.workbench-preview li span {
  color: var(--muted);
  font-size: var(--fs-sm);
}

.workbench-preview li b {
  font-size: var(--fs-md);
  line-height: var(--lh-snug);
}

.portfolio-result {
  scroll-margin-top: 86px;
  background: var(--white);
}

.result-hero {
  display: grid;
  padding: var(--band-pad) 0;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: var(--col-gap);
  background: var(--ink);
  color: var(--text);
}

.result-hero h2 {
  max-width: 820px;
  margin: 0;
  color: var(--lime);
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
}

.result-hero > div > p:not(.eyebrow) {
  max-width: 740px;
  margin: 24px 0 32px;
  color: var(--text-2);
  font-size: var(--fs-xl);
  line-height: var(--lh-body);
}

.result-stats {
  margin: 0;
  border-top: 1px solid var(--line);
}

.result-stats div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.result-stats dt {
  color: var(--muted);
  font-size: var(--fs-sm);
}

.result-stats dd {
  margin: 0;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: var(--fs-4xl);
  font-weight: 800;
}

.result-holdings {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 22px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--surface-raised);
}

.result-holdings > span {
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.result-holdings > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-holdings > div > span {
  display: flex;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: var(--white);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
}

.result-holdings small {
  color: var(--muted);
}

.result-holdings > div > span.uncovered {
  opacity: 0.55;
  border-style: dashed;
}

.alpha-chip {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: var(--track-label);
  vertical-align: 2px;
}

.uncovered-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: var(--content);
  margin: 44px auto 0;
  padding: 26px 30px;
  border: 1px dashed var(--line);
  border-radius: var(--r-m);
  background: var(--surface-raised);
}

.uncovered-block > div {
  max-width: 62%;
}

.uncovered-block h3 {
  margin: 6px 0 8px;
  font-size: var(--fs-xl);
}

.uncovered-block p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}

.uncovered-action {
  flex-shrink: 0;
  text-align: right;
}

.uncovered-action small {
  display: block;
  margin-top: 8px;
  max-width: 240px;
  color: var(--muted);
  font-size: var(--fs-xs);
  line-height: var(--lh-body);
}

@media (max-width: 900px) {
  .uncovered-block > div {
    max-width: 100%;
  }

  .uncovered-action {
    text-align: left;
  }
}

.result-section {
  width: var(--content);
  margin: 0 auto;
  padding: 100px 0;
}

.story-list {
  gap: 0;
  background: transparent;
}

.story-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 130px;
  gap: 22px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.story-row:last-child {
  border-bottom: 1px solid var(--line);
}

.story-rank {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.story-title,
.contribution-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-title h3 {
  margin: 0;
  font-size: var(--fs-2xl);
}

.story-content > p {
  max-width: 710px;
  margin: 11px 0 16px;
  color: var(--muted);
  line-height: var(--lh-body);
}

.story-tickers span {
  border-color: var(--line);
  color: var(--muted);
}

.story-content dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 0;
}

.story-content dl div {
  padding: 14px;
  border-left: 3px solid var(--lime-dark);
  background: var(--surface-raised);
}

.story-content dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: var(--fs-2xs);
  font-weight: 800;
}

.story-content dd {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
}

.direction {
  display: inline-flex;
  min-width: 46px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border-radius: var(--r-s);
  font-size: var(--fs-2xs);
  font-weight: 800;
  white-space: nowrap;
}

.direction.bullish,
.stock-score dd.bullish {
  background: rgba(142,222,114,.15);
  color: var(--moss);
}

.direction.bearish,
.stock-score dd.bearish {
  background: rgba(255,112,93,.14);
  color: #ff8f82;
}

.direction.mixed,
.stock-score dd.mixed {
  background: rgba(246,184,74,.18);
  color: var(--amber-text);
}

.direction.neutral,
.stock-score dd.neutral {
  background: var(--surface-raised);
  color: var(--muted);
}

.exposure-number {
  text-align: right;
}

.exposure-number strong {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-4xl);
}

.exposure-number span {
  color: var(--muted);
  font-size: var(--fs-2xs);
}

.method-callout {
  display: grid;
  padding: var(--band-pad) max(24px, calc((100vw - 1180px) / 2));
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: 70px;
  background: var(--lime);
}

.method-callout h2 {
  margin: 0;
  font-size: var(--fs-4xl);
}

.method-callout > p {
  margin: 0;
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
}

.stock-shell {
  padding: var(--band-pad) 0;
}

.stock-search {
  display: grid;
  max-width: 430px;
  margin: 0 0 48px auto;
}

.stock-search > div,
.monitor-picker form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
}

.stock-search input,
.monitor-picker input,
.demo-register input {
  min-height: 46px;
  padding: 0 13px;
}

.stock-hero {
  display: grid;
  padding: 52px;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 70px;
  border-radius: var(--r-m);
  background: var(--white);
}

.stock-meta {
  margin-bottom: 50px;
}

.stock-hero h1 {
  margin: 0;
  font-size: var(--fs-mega);
  line-height: 1;
}

.stock-hero h2 {
  max-width: 760px;
  margin: 24px 0 12px;
  font-size: var(--fs-3xl);
  line-height: var(--lh-heading);
}

.stock-hero > div > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: var(--lh-body);
}

.stock-score {
  margin: 0;
  border-top: 1px solid var(--line);
}

.stock-score div {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.stock-score dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.stock-score dd {
  display: inline-flex;
  margin: 0;
  padding: 5px 8px;
  border-radius: var(--r-s);
  font-size: var(--fs-2xl);
  font-weight: 800;
}

.stock-score dd.axis-score {
  padding: 0;
  background: transparent;
  font-family: var(--font-mono);
  font-size: var(--fs-xl);
}

.stock-grid {
  display: grid;
  margin-top: 12px;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: var(--grid-gap);
}

.stock-main,
.stock-sidebar {
  padding: 38px;
  border-radius: var(--r-m);
  background: var(--white);
}

.stock-main .section-heading {
  align-items: start;
}

.stock-main .section-heading h2 {
  font-size: var(--fs-4xl);
}

.contribution-list {
  gap: 0;
  background: transparent;
}

.contribution-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.axis-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-raised);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 800;
}

.axis-mark.bullish {
  background: var(--aqua);
}

.axis-mark.bearish {
  background: var(--coral);
}

.contribution-title h3 {
  margin: 0;
  font-size: var(--fs-xl);
}

.contribution-title > span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
}

.contribution-row p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}

.axis-values span {
  color: var(--muted);
  font-size: var(--fs-2xs);
}

.axis-values b {
  color: var(--text);
  font-family: var(--font-mono);
}

.stock-sidebar {
  padding-top: 18px;
}

.stock-sidebar section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.stock-sidebar h3,
.stock-sidebar p {
  margin: 0;
  line-height: var(--lh-body);
}

.stock-sidebar section.risk {
  border-left: 3px solid var(--coral);
  padding-left: 16px;
}

.timeline-item {
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.timeline-item span {
  color: var(--muted);
  font-size: var(--fs-2xs);
}

.timeline-item p {
  margin-top: 4px;
  font-size: var(--fs-sm);
}

/* 标的详情 v4.7：首屏是正在运行的判断，不再是静态数据卡。 */
.stock-page {
  min-height: 80vh;
  /* 页尾传播卡 CTA 的 margin-bottom 已归零，页尾留白由这里统一出 */
  padding-bottom: var(--band-pad);
}

/* 换股票是第二动作，不该占据进页面的第一屏——收进黑区顶栏，安静地放着。 */
.stock-live-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
}

/* .stock-jump（盲打代码的换股输入框）已被 .stock-switch 选择器取代，样式一并删除 */

.stock-loading {
  width: var(--content);
  min-height: 66vh;
  margin: 0 auto;
}

.stock-live-band {
  position: relative;
  overflow: hidden;
  padding: var(--band-pad-hero) 0 var(--band-pad);
  background: var(--ink);
  color: var(--text);
}

.stock-live-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='68' viewBox='0 0 68 68'%3E%3Cpath d='M68 0H0V68' fill='none' stroke='%23c9ff43' stroke-opacity='.2'/%3E%3C/svg%3E");
}

.stock-live-head,
.stock-live-claim,
.stock-live-workbench,
.stock-live-foot {
  position: relative;
  z-index: 1;
}

/* 代码和判断必须在同一块——分到左右两栏就会被当成两件事读。 */
.stock-live-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 48px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(241,244,238,.14);
}

.stock-live-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(241,244,238,.52);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}

.stock-live-meta b { color: var(--lime); }
.stock-live-meta span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.stock-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(201,255,67,.14);
  animation: lpPing 1.5s ease-out infinite;
}

.stock-id h1 {
  margin: 0;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: var(--fs-mega);
  line-height: var(--lh-display);
}

.stock-id p {
  margin: 12px 0 0;
  color: rgba(241,244,238,.64);
  font-size: var(--fs-md);
}

.stock-verdict {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding-bottom: 4px;
}

.stock-verdict-chip {
  padding: 7px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: var(--fs-xl);
  font-weight: 800;
  letter-spacing: .04em;
}

.stock-verdict-chip.bullish { color: var(--lime); }
.stock-verdict-chip.bearish { color: #ff8f82; }
.stock-verdict-chip.mixed { color: var(--amber-text); }
.stock-verdict-chip.neutral { color: var(--text); }

.stock-verdict-split {
  margin: 0;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: var(--fs-lg);
  font-weight: 700;
}

.stock-verdict-axis {
  margin: 0;
  color: rgba(241,244,238,.52);
  font-size: var(--fs-sm);
}

.stock-live-claim {
  padding: 30px 0 6px;
}

.stock-claim-kicker {
  margin: 0 0 10px;
  color: rgba(241,244,238,.52);
  font-size: var(--fs-xs);
  font-weight: 700;
}

.stock-live-claim h2 {
  max-width: 900px;
  margin: 0;
  font-size: var(--fs-hero);
  line-height: var(--lh-heading);
}

.stock-claim-why {
  max-width: 820px;
  margin: 16px 0 0;
  color: rgba(241,244,238,.64);
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
}

/* 分栏交给 .lp-thesis-body 自己做；这里再套一层 grid 会把整张图挤成 40% 宽。 */
.stock-live-workbench {
  margin-top: 30px;
  border: 1px solid rgba(241,244,238,.26);
  background: rgba(0,0,0,.16);
}

.stock-live-workbench .lp-thesis {
  margin: 0;
  border-radius: 0;
  background: transparent;
}

.stock-live-workbench .lp-thesis-stage {
  padding: 10px 8px 0;
}

.stock-live-workbench .lp-thesis-stage-head { padding-top: 16px; }

.stock-live-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
}

.stock-live-foot > p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(241,244,238,.52);
  font-size: var(--fs-xs);
}

.stock-live-foot .mode-badge { color: rgba(241,244,238,.64); }
.stock-live-foot .button-primary { border-color: var(--lime); background: var(--lime); color: var(--ink); }
/* <button> 有 UA 默认灰底，不显式清掉就会在黑区里变成一块看不见字的灰砖。 */
.stock-light-button { border-color: rgba(241,244,238,.4); background: none; color: var(--text); }
.stock-light-button:hover { border-color: var(--text); background: rgba(241,244,238,.1); }

.stock-research {
  padding: var(--band-pad) 0;
}

.stock-research-head {
  align-items: end;
  margin-bottom: var(--head-gap);
}

.stock-research-head h2 { margin: 0; font-size: var(--fs-4xl); }
.stock-research .contribution-list { border-bottom: 1px solid var(--line); }
.stock-relationships-wrap { padding-bottom: 96px; }

@media (max-width: 1000px) {
  .stock-live-head { grid-template-columns: 1fr; gap: 34px; }
  .stock-live-score { max-width: 620px; }
  .stock-live-workbench { grid-template-columns: 1fr; }
    }

@media (max-width: 700px) {
  .stock-query-band .stock-search { grid-template-columns: 1fr; gap: 9px; }
  .stock-live-band { padding-top: 40px; }
  .stock-live-copy h1 { margin: 18px 0 24px; font-size: var(--fs-hero); }
  .stock-live-copy h2 { font-size: var(--fs-3xl); }
  .stock-live-score { grid-template-columns: 1fr 1fr; }
  .stock-live-score > div { min-height: 82px; }
  .stock-live-workbench { width: 100%; border-right: 0; border-left: 0; }
  .stock-live-workbench .lp-thesis-stage { overflow-x: auto; padding-inline: 0; }
  .stock-live-workbench .lp-thesis-stage svg { width: 700px; max-width: none; }
  .stock-live-workbench .lp-thesis-stage-head { position: sticky; left: 0; width: var(--content); padding-inline: 0; margin-inline: auto; }
      .stock-live-foot { align-items: stretch; flex-direction: column; }
  .stock-live-foot > p { align-items: flex-start; }
  .stock-live-foot .hero-actions { display: grid; grid-template-columns: 1fr; }
  .stock-research { padding-top: 48px; }
  .stock-research-head { align-items: start; }
  .stock-research-head h2 { font-size: var(--fs-3xl); }
  .stock-relationships-wrap { width: 100%; }
  .stock-relationships-wrap .stock-relationships { border-radius: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .stock-live-dot,
  .lp-tg-core-ring,
  .lp-tg-node.focus { animation: none; }
}

.stock-relationships {
  margin-top: 12px;
  padding: var(--card-pad-lg);
  border-radius: var(--r-m);
  background: var(--white);
}

.stock-relationships .section-heading {
  align-items: start;
}

.stock-relationships .section-heading h2 {
  max-width: 760px;
  font-size: var(--fs-4xl);
}

.stock-rel-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 14px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stock-rel-summary div {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stock-rel-summary dt {
  color: var(--muted);
  font-size: var(--fs-2xs);
}

.stock-rel-summary dd {
  margin: 7px 0 0;
  font-family: var(--font-mono);
  font-size: var(--fs-xl);
  font-weight: 800;
}

.stock-holder-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stock-holder {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 154px 16px;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
}

.stock-holder:hover {
  background: var(--surface);
}

.stock-holder-face {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-weight: 800;
}

.stock-holder-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock-holder-main {
  min-width: 0;
}

.stock-holder-main > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stock-holder-main b {
  font-size: var(--fs-md);
}

.stock-holder-main em {
  padding: 3px 5px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-s);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-style: normal;
}

.stock-holder-main small,
.stock-holder-main strong,
.stock-holder-time b,
.stock-holder-time small {
  display: block;
}

.stock-holder-main small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: var(--fs-2xs);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stock-holder-main strong {
  margin-top: 7px;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
}

.stock-holder-time {
  text-align: right;
}

.stock-holder-time b {
  font-size: var(--fs-2xs);
}

.stock-holder-time small {
  margin-top: 5px;
  color: var(--muted);
  font-size: var(--fs-2xs);
  line-height: var(--lh-snug);
}

.stock-holder > i,
.stock-house-row > i {
  font-style: normal;
}

.stock-holder-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stock-holder-empty p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.stock-house-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 22px;
  margin-top: 12px;
  padding: 18px 20px;
  background: var(--ink);
  color: var(--text);
  text-decoration: none;
}

.stock-house-row span b,
.stock-house-row span small {
  display: block;
}

.stock-house-row span small {
  margin-top: 3px;
  color: var(--muted);
  font-size: var(--fs-2xs);
}

.stock-house-row strong,
.stock-house-row em,
.stock-house-row i {
  font-size: var(--fs-xs);
}

.stock-house-row em {
  color: var(--lime);
  font-style: normal;
}

.stock-holder-boundary {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: var(--fs-2xs);
  line-height: var(--lh-body);
}

.monitor-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--col-gap);
}

.monitor-hero h1 {
  margin: 0;
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
}

.monitor-hero > div > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: var(--lh-body);
}

.monitor-state {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: var(--white);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.monitor-dashboard {
  padding-bottom: 120px;
}

.monitor-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.monitor-summary h2 {
  margin: 0;
  font-size: var(--fs-h2);
}

.monitor-summary dl {
  display: flex;
  gap: 42px;
  margin: 0;
}

.monitor-summary dt {
  color: var(--muted);
  font-size: var(--fs-2xs);
}

.monitor-summary dd {
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: var(--fs-xl);
  font-weight: 800;
}

.monitor-list {
  margin-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

.monitor-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto 20px;
  align-items: center;
  gap: 16px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.monitor-row:last-child {
  border-bottom: 0;
}

.ticker-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--r-s);
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-mono);
  font-weight: 800;
}

.monitor-row > div > span,
.monitor-row > div > strong,
.monitor-row > div > small {
  display: block;
}

.monitor-row > div > span {
  color: var(--muted);
  font-size: var(--fs-2xs);
  font-weight: 800;
}

.monitor-row > div > strong {
  margin: 5px 0;
  font-size: var(--fs-lg);
}

.monitor-row > div > small {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.monitor-feed {
  margin-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.feed-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 17px 10px;
  margin: 0 -10px;
  border-top: 1px solid var(--line);
}

.feed-row.fresh {
  background: rgba(201, 255, 67, 0.16);
  box-shadow: inset 3px 0 0 var(--lime-dark);
}

.feed-when span {
  display: block;
  color: var(--muted);
  font-size: var(--fs-2xs);
  font-weight: 800;
}

.feed-new {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feed-body span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 800;
}

.feed-body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}

.monitor-picker {
  max-width: 760px;
  margin: 0;
}

.monitor-picker form {
  margin-bottom: 18px;
}

.monitor-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
}

.monitor-option {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
}

.monitor-option i {
  font-style: normal;
  font-size: var(--fs-lg);
}

.picker-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.picker-footer > span {
  color: var(--muted);
  font-size: var(--fs-sm);
}

.register-page {
  display: grid;
  width: var(--content);
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.1fr) minmax(370px, .65fr);
  align-items: center;
  gap: 100px;
  padding: var(--band-pad) 0;
}

.register-page-copy h1 {
  font-size: var(--fs-hero);
}

.register-page-copy .register-lede {
  max-width: 730px;
  margin: var(--sp-4) 0 var(--sp-4);
  color: var(--text-2);
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
}

.register-page-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--muted);
  line-height: var(--lh-body);
}

/* 早鸟横条（2026-08-17 内测早鸟）：/register 页和注册弹层共用。
   第一版是细线框纯文本，读起来像免责声明（CEO：太丑）——改成
   「早鸟」徽章 + 主行数字强调 + 截止日副行，像一条福利不像一条脚注。
   窗口关闭后由 JS 摘掉（earlyBirdWindowOpen），样式不用管过期。 */
.register-early-bird {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 680px;
  margin: 18px 0 22px;
  padding: 13px 16px;
  background: rgba(201, 255, 67, .06);
  border: 1px solid rgba(201, 255, 67, .3);
  border-radius: var(--r-m);
}
.register-early-bird > b {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: var(--r-s);
  background: var(--lime);
  color: var(--ink);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .12em;
}
.register-early-bird .eb-main {
  display: block;
  color: var(--text);
  font-size: var(--fs-md);
  font-weight: 700;
  line-height: var(--lh-body);
}
.register-early-bird .eb-main em {
  font-style: normal;
  color: var(--lime-text);
}
.register-early-bird .eb-sub {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: var(--fs-xs);
  letter-spacing: .02em;
}

.register-page-steps {
  padding: 34px;
  border-radius: var(--r-m);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.register-page-steps > span {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.register-page-steps ol {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.register-page-steps li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.register-page-steps li > b {
  color: var(--lime);
  font-family: var(--font-mono);
}

.register-page-steps strong,
.register-page-steps p {
  display: block;
}

.register-page-steps p {
  margin: 7px 0 0;
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
}

.site-footer {
  display: grid;
  padding: 58px max(24px, calc((100vw - 1180px) / 2));
  grid-template-columns: 1fr auto;
  gap: 35px 70px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--text);
}

.footer-brand .brand-lockup {
  width: 178px;
}

.site-footer > div > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.footer-links {
  display: flex;
  align-items: start;
  gap: 26px;
  color: var(--text-2);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.legal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-2xs);
  line-height: var(--lh-body);
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  overflow: auto;
  place-items: center;
  padding: 28px;
}

/* 标的入口只做两件事：直接查一只，或从市场驱动关系里发现一只。 */
.asset-explorer-hero {
  padding: var(--band-pad-hero) 0 var(--band-pad);
  border-bottom: 1px solid rgba(241,244,238,.14);
  background: var(--ink);
}

.asset-explorer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.asset-explorer-topline .eyebrow { margin: 0; }
.asset-explorer-topline > span { color: var(--muted); font: 700 10px var(--font-mono); letter-spacing: var(--track-label); }

.asset-explorer-intro { display: grid; gap: 32px; }

.asset-explorer-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
}

.asset-explorer-copy > p {
  max-width: 760px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: var(--fs-lg);
  line-height: var(--lh-body);
}

.asset-search { width: min(940px, 100%); margin: 0; padding: 22px; border: 1px solid rgba(241,244,238,.26); background: rgba(241,244,238,.05); }
.asset-search:focus-within { border-color: var(--lime); }
.asset-search > label { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; color: var(--text); }
.asset-search > label span { font-size: var(--fs-md); font-weight: 800; }
.asset-search > label small { color: var(--muted); font-size: var(--fs-2xs); font-weight: 600; }
.asset-search-control { display: grid; min-height: 112px; grid-template-columns: minmax(0, 1fr) 54px; align-items: end; border: 1px solid rgba(241,244,238,.26); background: var(--surface); }
.asset-search textarea { width: 100%; min-width: 0; min-height: 108px; resize: none; border: 0; padding: 24px 20px; background: transparent; color: var(--text); outline: 0; font: 650 21px/1.55 var(--font-sans); }
.asset-search textarea::placeholder { color: rgba(241,244,238,.4); }
.asset-search-submit { display: grid; width: 40px; height: 40px; place-items: center; margin: 0 12px 12px 0; border: 1px solid var(--lime); border-radius: 50%; background: var(--lime); color: var(--ink); cursor: pointer; font-size: var(--fs-2xl); }
.asset-search-submit:hover { background: var(--text); border-color: var(--text); }
.asset-search .form-error { margin: 8px 0 0; }

.asset-search-prompts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.asset-search-prompts a { padding: 8px 11px; border: 1px solid rgba(241,244,238,.14); color: rgba(241,244,238,.64); font-size: var(--fs-2xs); }
.asset-search-prompts a:hover { border-color: var(--lime); color: var(--lime); }
.asset-search-foot { display: flex; align-items: center; gap: 12px; margin-top: 13px; color: var(--muted); font-size: var(--fs-2xs); }
.asset-quick-links { display: flex; flex-wrap: wrap; gap: 7px; }
.asset-quick-links a { padding: 6px 9px; border: 1px solid var(--line); background: var(--surface); color: rgba(241,244,238,.64); font: 750 10px var(--font-mono); }
.asset-quick-links a:hover { border-color: var(--lime); background: var(--lime); color: var(--ink); }

.asset-map-section {
  position: relative;
  overflow: hidden;
  padding: var(--band-pad) 0;
  background: var(--ink);
  color: var(--text);
}

/* 地图搬去 /market 之后，个股页原来那块只留一条入口：个股页讲个股，
   市场怎么传导过来去盘面页看。深色接着上面的 hero，不在中间插一块浅色。 */
.asset-map-teaser {
  border-bottom: 1px solid rgba(241,244,238,.14);
  background: var(--ink);
  color: var(--text);
}

.asset-map-teaser-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  color: inherit;
  text-decoration: none;
}

.asset-map-teaser-title { display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px; min-width: 0; }
.asset-map-teaser-title .eyebrow { color: var(--lime-dark); font-style: normal; }
.asset-map-teaser-title b { font-size: var(--fs-xl); }
.asset-map-teaser-note { display: inline-flex; align-items: center; gap: 10px; color: rgba(241,244,238,.52); font-size: var(--fs-xs); }
.asset-map-teaser-note i { color: var(--lime); font-style: normal; }
.asset-map-teaser-link:hover .asset-map-teaser-note { color: var(--lime); }

.asset-map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M72 0H0V72' fill='none' stroke='%23c9ff43' stroke-opacity='.2'/%3E%3C/svg%3E");
}

.asset-map-loading { min-height: 520px; color: rgba(241,244,238,.64); }
.asset-map-wrap { position: relative; z-index: 1; }

.asset-map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: var(--head-gap);
}

.asset-map-heading .eyebrow { color: var(--lime-dark); }
.asset-map-heading h2 { margin: 0; font-size: var(--fs-h2); }
.asset-map-heading > p { display: flex; max-width: 430px; align-items: center; gap: 12px; margin: 0; color: rgba(241,244,238,.52); font-size: var(--fs-xs); line-height: var(--lh-body); }
.asset-map-heading .mode-badge { color: rgba(241,244,238,.76); }

.asset-market-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  min-height: 660px;
  border: 1px solid rgba(241,244,238,.26);
  background: rgba(0,0,0,.12);
}

.asset-map-canvas { position: relative; min-width: 0; padding: 14px 18px 10px; }
.asset-map-flow-guide { display: grid; width: 100%; grid-template-columns: 1fr 1.4fr 1fr; align-items: center; gap: 14px; color: rgba(241,244,238,.52); font-size: var(--fs-2xs); }
.asset-map-flow-guide span { display: flex; align-items: center; gap: 8px; }
.asset-map-flow-guide span:nth-of-type(2) { justify-content: center; }
.asset-map-flow-guide span:nth-of-type(3) { justify-content: flex-end; }
.asset-map-flow-guide b { color: var(--lime); font: 700 9px var(--font-mono); }
.asset-map-canvas svg { display: block; width: 100%; height: auto; min-height: 570px; }

.asset-map-regime-edge {
  fill: none;
  stroke: rgba(241,244,238,.14);
  stroke-width: 1.2;
  stroke-dasharray: 3 7;
  transition: opacity .22s ease, stroke .22s ease;
}

.asset-map-regime-edge.active { stroke: rgba(241,244,238,.4); }
.asset-map-regime-orbit { fill: none; stroke: rgba(201,255,67,.22); stroke-width: 1; stroke-dasharray: 5 8; }
.asset-map-regime-disc { fill: rgba(201,255,67,.08); stroke: rgba(201,255,67,.65); stroke-width: 1.4; }
.asset-map-regime-kicker { fill: rgba(241,244,238,.52); text-anchor: middle; font: 700 9px var(--font-sans); }
.asset-map-regime-title { fill: var(--text); text-anchor: middle; font: 800 18px var(--font-sans); }
.asset-map-regime-count { fill: var(--lime); text-anchor: middle; font: 700 9px var(--font-mono); }
.asset-map-regime-hint { fill: rgba(241,244,238,.4); text-anchor: middle; font-size: 8px; }

.asset-map-driver-relation {
  fill: none;
  stroke: rgba(142,222,114,.13);
  stroke-width: 1;
  stroke-dasharray: 2 7;
  transition: opacity .22s ease, stroke .22s ease, stroke-width .22s ease;
}

.asset-map-driver-relation.active { stroke: rgba(142,222,114,.58); stroke-width: 1.6; animation: assetMapFlow 1.7s linear infinite; }

.asset-map-context-relation {
  fill: none;
  stroke: rgba(241,244,238,.1);
  stroke-width: 1;
  stroke-dasharray: 1 9;
  transition: opacity .22s ease, stroke .22s ease;
}

.asset-map-context-relation.active { stroke: rgba(241,244,238,.26); }

.asset-map-edge {
  fill: none;
  stroke: rgba(241,244,238,.1);
  stroke-width: 1.2;
  stroke-dasharray: 4 7;
  transition: stroke .25s ease, stroke-width .25s ease, opacity .25s ease;
}

.asset-map-edge.active { stroke: rgba(241,244,238,.4); stroke-width: 1.65; animation: assetMapFlow 1.4s linear infinite; }
.asset-map-edge.active.bullish { stroke: rgba(201,255,67,.65); }
.asset-map-edge.active.bearish { stroke: rgba(255,112,93,.65); }
.asset-map-edge.active.mixed { stroke: rgba(246,184,74,.72); }

.asset-map-driver { cursor: pointer; outline: none; }
.asset-map-driver > *:not(.asset-map-driver-hit) { pointer-events: none; }
.asset-map-driver-hit { fill: transparent; pointer-events: all; }
.asset-map-driver { opacity: .25; transition: opacity .2s ease; }
.asset-map-driver.active { opacity: 1; }
.asset-map-driver-halo { fill: none; stroke: rgba(201,255,67,.14); transition: stroke .2s ease; }
.asset-map-driver-disc { fill: rgba(241,244,238,.05); stroke: rgba(241,244,238,.4); stroke-width: 1.2; transition: fill .2s ease, stroke .2s ease; }
.asset-map-driver:hover .asset-map-driver-disc,
.asset-map-driver:focus-visible .asset-map-driver-disc,
.asset-map-driver.active .asset-map-driver-disc { fill: rgba(201,255,67,.14); stroke: var(--lime); }
.asset-map-driver:hover .asset-map-driver-halo,
.asset-map-driver:focus-visible .asset-map-driver-halo,
.asset-map-driver.active .asset-map-driver-halo { stroke: rgba(201,255,67,.22); }
.asset-map-driver-index { fill: var(--lime); text-anchor: middle; font: 800 13px var(--font-mono); }
.asset-map-driver-label { color: rgba(241,244,238,.9); text-align: center; font: 650 11px/1.35 var(--font-sans); }
.asset-map-driver-label b { font-weight: 700; }
.asset-map-driver-label span { display: block; margin-top: 5px; color: rgba(241,244,238,.4); font-size: 8px; }

.asset-map-stock { outline: none; }
.asset-map-stock { opacity: .24; transition: opacity .2s ease; }
.asset-map-stock.active { opacity: 1; }
.asset-map-stock-halo { fill: none; stroke: transparent; }
.asset-map-stock-disc { fill: rgba(241,244,238,.05); stroke: rgba(241,244,238,.26); stroke-width: 1.2; transition: fill .2s ease, stroke .2s ease; }
.asset-map-stock-code { fill: rgba(241,244,238,.64); text-anchor: middle; font: 800 12px var(--font-mono); }
.asset-map-stock-count { fill: rgba(241,244,238,.4); text-anchor: middle; font-size: 7px; }
.asset-map-stock.active .asset-map-stock-disc,
.asset-map-stock:hover .asset-map-stock-disc,
.asset-map-stock:focus-visible .asset-map-stock-disc { fill: var(--lime); stroke: var(--lime); }
.asset-map-stock.active .asset-map-stock-code,
.asset-map-stock:hover .asset-map-stock-code,
.asset-map-stock:focus-visible .asset-map-stock-code,
.asset-map-stock.active .asset-map-stock-count,
.asset-map-stock:hover .asset-map-stock-count,
.asset-map-stock:focus-visible .asset-map-stock-count { fill: var(--ink); }
.asset-map-stock.active .asset-map-stock-halo { stroke: rgba(201,255,67,.22); animation: stockCorePulse 2.2s ease-in-out infinite; }

.asset-map-canvas-note { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 0; color: rgba(241,244,238,.4); font-size: var(--fs-2xs); }
.asset-map-canvas-note span { display: inline-flex; align-items: center; gap: 6px; }
.asset-map-canvas-note i { width: 18px; border-top: 1px dashed rgba(142,222,114,.58); }
.asset-map-canvas-note .context i { border-color: rgba(241,244,238,.26); border-top-style: dotted; }
.asset-map-canvas-note .asset i { border-color: rgba(201,255,67,.65); }

.asset-map-rail { display: flex; min-width: 0; flex-direction: column; border-left: 1px solid rgba(241,244,238,.26); }
.asset-map-rail-label { display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: 0 24px; border-bottom: 1px solid rgba(241,244,238,.26); color: rgba(241,244,238,.4); font-size: var(--fs-2xs); }
.asset-map-rail-label button { border: 0; background: transparent; color: rgba(241,244,238,.64); cursor: pointer; font-size: var(--fs-2xs); }
.asset-map-rail-label button:hover { color: var(--lime); }

.asset-map-detail { padding: var(--card-pad);
 }
.asset-map-detail-head { display: flex; justify-content: space-between; gap: 12px; color: rgba(241,244,238,.4); font: 700 9px var(--font-mono); }
.asset-map-detail-head b { color: var(--lime); }
.asset-map-detail h3 { margin: 18px 0 9px; font-size: var(--fs-2xl); line-height: var(--lh-heading); }
.asset-map-detail > p { margin: 0; color: rgba(241,244,238,.64); font-size: var(--fs-sm); line-height: var(--lh-body); }
.asset-map-detail dl { margin: 18px 0 0; }
.asset-map-detail dl > div { padding: 12px 0; border-top: 1px solid rgba(241,244,238,.14); }
.asset-map-detail dt { color: rgba(241,244,238,.4); font-size: var(--fs-2xs); }
.asset-map-detail dd { margin: 6px 0 0; color: rgba(241,244,238,.76); font-size: var(--fs-xs); line-height: var(--lh-body); }
.asset-map-detail-assets { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.asset-map-detail-assets a { display: inline-flex; align-items: center; gap: 6px; padding: 7px 9px; border: 1px solid rgba(241,244,238,.26); font: 700 10px var(--font-mono); }
.asset-map-detail-assets a:hover { border-color: var(--lime); color: var(--lime); }
.asset-map-detail-assets i,
.asset-map-market-link i { font-style: normal; }
.asset-map-market-link { display: flex; justify-content: space-between; margin-top: auto; padding: 16px 24px; border-top: 1px solid rgba(241,244,238,.26); color: rgba(241,244,238,.76); font-size: var(--fs-xs); }
.asset-map-market-link:hover { color: var(--lime); }

.asset-index-section { padding: var(--band-pad) 0;
 }
.asset-index-heading { align-items: end; margin-bottom: var(--head-gap); }
.asset-index-heading .eyebrow { color: var(--lime-dark); }
.asset-index-heading h2 { font-size: var(--fs-h2); }
.asset-index-list { border-top: 1px solid rgba(241,244,238,.26); }
.asset-index-row { display: grid; grid-template-columns: 112px minmax(0,1.1fr) 86px 74px minmax(180px,.9fr) 18px; align-items: center; gap: 20px; min-height: 92px; padding: 14px 15px; border-bottom: 1px solid var(--line); transition: background .16s ease; }
.asset-index-row:hover { background: rgba(241,244,238,.05); }
.asset-index-row small { display: block; margin-bottom: 5px; color: var(--muted); font-size: var(--fs-2xs); font-weight: 600; }
.asset-index-row b { display: block; font-size: var(--fs-sm); line-height: var(--lh-snug); }
.asset-index-code b { font: 850 22px var(--font-mono); }
.asset-index-code small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.asset-index-bias b { font-family: var(--font-mono); }
.asset-index-bias.bullish b { color: var(--lime-dark); }
.asset-index-bias.bearish b { color: #ff8f82; }
.asset-index-bias.mixed b { color: var(--amber-text); }
.asset-index-count b { font: 850 20px var(--font-mono); }
.asset-index-next b { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-weight: 600; }
.asset-index-row > i { font-style: normal; text-align: right; }
.asset-index-boundary { margin: 17px 0 0; color: var(--muted); font-size: var(--fs-2xs); line-height: var(--lh-body); }

@keyframes assetMapFlow { to { stroke-dashoffset: -22; } }

.modal-backdrop {
  position: fixed;
  z-index: -1;
  inset: 0;
  border: 0;
  background: rgba(6,8,7,.78);
  cursor: default;
}

/* 单列版式（2026-08-17 CEO 拍板，照交接包 signup-gate 的形状）。
   原来是 1050px 双列：左边我们的黑绿卖点栏、右边 BIT 的品牌表单，
   两套设计语言硬贴在一起。组件样式不可定制（硬边界），所以并排必然打架——
   改成上下堆叠，iframe 就是整张卡，没有东西跟它抢视觉。
   宽度取 552：减去左右各 30px 内边距正好给组件 491px——那是它内容列的原生宽度
   （实测 520px 的卡只给到 458，表单被挤窄一档；组件下限 280、建议 320-560）。
   ⚠️ 不要给这张卡加 transform —— 会困死组件自己的全屏弹窗（交接包坑 1）。
   max-height + overflow-y 是坑 5 的要求：iframe 高度会随步骤实时变化。 */
.register-dialog {
  position: relative;
  display: block;
  width: min(552px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: var(--r-m);
  border: 1px solid rgba(241,244,238,.14);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.modal-close {
  position: absolute;
  z-index: 5;
  top: 15px;
  right: 15px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(241,244,238,.26);
  border-radius: 50%;
  background: rgba(11,13,12,.74);
  color: var(--text);
  cursor: pointer;
  font-size: var(--fs-2xl);
}

.register-value {
  padding: 34px 30px 0;
  color: var(--text);
}

.register-value .eyebrow {
  color: var(--lime);
}

.register-value h2 {
  margin: 0;
  font-size: var(--fs-2xl);
  line-height: var(--lh-heading);
}

.register-value > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--text-2);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}

/* 单列版式下这个清单只放跟踪对象（他自己的内容）；
   通用卖点清单在弹层里已撤掉——门出现在意图之后，用户知道自己为什么在这儿，
   再压四条卖点只会把表单推到折叠线以下。完整卖点留在 /register 页。 */
.register-value ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.register-value ul:empty { display: none; }

.register-value li {
  padding: 12px 0 12px 24px;
  border-top: 1px solid var(--line);
}

.register-value li::before {
  float: left;
  margin-left: -24px;
  color: var(--lime);
  content: "+";
  font-weight: 800;
}

/* 免责小字移到 iframe 下方（原来在卖点栏底部）——单列里它该收尾，不该开场 */
.register-dialog > small {
  display: block;
  padding: 0 30px 24px;
  color: var(--muted);
  font-size: var(--fs-2xs);
  line-height: var(--lh-body);
}

.register-embed {
  position: relative;
  min-width: 0;
  padding: 20px 30px 26px;
  background: var(--surface);
}

.register-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* 组件自带深蓝底，和站里的近黑有色差且改不掉（样式不可定制是硬边界）。
   给它一个圆角边框，读起来是"嵌进来的一块"，而不是一道没对齐的接缝。
   只圆角+裁剪，不加 transform —— 那会困死组件的全屏弹窗（交接包坑 1）。 */
#bit-signup-box {
  overflow: hidden;
  border-radius: var(--r-l);
  border: 1px solid rgba(241,244,238,.1);
}

.embed-skeleton,
.page-loading,
.section-loading {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.page-loading {
  min-height: 70vh;
}

.embed-skeleton i,
.page-loading i,
.section-loading i,
.button-spinner {
  width: 17px;
  height: 17px;
  border: 2px solid var(--text-2);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.button-spinner {
  border-color: var(--line-strong);
  border-top-color: var(--lime);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.demo-register {
  max-width: 440px;
  margin: 30px auto;
}

.mode-label {
  display: inline-block;
  padding: 5px 7px;
  border-radius: var(--r-s);
  background: rgba(246,184,74,.14);
  color: var(--amber);
  font-size: var(--fs-2xs);
  font-weight: 800;
}

.demo-register h3 {
  margin: 20px 0 10px;
  font-size: var(--fs-3xl);
}

.demo-register > p,
.demo-register > small {
  color: var(--muted);
  line-height: var(--lh-body);
}

.demo-register form {
  margin: 26px 0 14px;
}

.demo-register form .button {
  margin-top: 10px;
}

.demo-register code {
  color: var(--text);
  font-size: var(--fs-xs);
}

.registration-success {
  display: grid;
  min-height: 460px;
  align-content: center;
  justify-items: center;
  max-width: 440px;
  margin: auto;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-size: var(--fs-3xl);
  font-weight: 800;
}

.registration-success .eyebrow {
  margin-top: 26px;
}

.registration-success h3 {
  margin: 0;
  font-size: var(--fs-3xl);
}

.registration-success p:not(.eyebrow) {
  color: var(--muted);
}

.registration-success .button {
  margin-top: 18px;
}

.embed-error a {
  display: inline-block;
  margin-top: 16px;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 800;
}

/* 组件加载失败：把话说清楚 + 给一条能走通的路，别只留一行小字 */
.embed-fallback {
  margin-top: 8px;
  padding: 22px 22px 20px;
  border: 1px solid var(--amber);
  border-radius: var(--r-l);
  background: var(--surface);
}
.embed-fallback strong { display: block; color: var(--amber); font-size: var(--fs-md); }
.embed-fallback p { margin: 10px 0 0; color: var(--muted); font-size: var(--fs-sm); line-height: var(--lh-body); }
.embed-fallback .button { margin-top: 16px; }

.share-dialog {
  position: relative;
  display: grid;
  width: min(930px, 100%);
  grid-template-columns: minmax(250px, .75fr) minmax(330px, 1.25fr);
  gap: 28px 40px;
  padding: var(--card-pad-xl);
  border-radius: var(--r-m);
  background: var(--paper);
}

.share-dialog h2 {
  margin: 0;
  font-size: var(--fs-4xl);
}

.share-dialog > div > p:not(.eyebrow) {
  color: var(--muted);
  line-height: var(--lh-body);
}

.share-dialog canvas {
  width: min(100%, 390px);
  height: auto;
  grid-row: 1 / span 2;
  grid-column: 2;
  justify-self: center;
  border-radius: var(--r-m);
  box-shadow: 0 12px 30px rgba(11,13,12,.14);
}

.share-actions {
  align-self: end;
  flex-wrap: wrap;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  max-width: min(380px, calc(100vw - 44px));
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: var(--ink);
  color: var(--text);
  box-shadow: 0 10px 35px rgba(0,0,0,.22);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.empty-state {
  padding: var(--card-pad-xl);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-m);
  /* 终端等待态：虚线框 + mono 提示符，空状态是「等待信号」，不是「坏掉的框」。
     禁 gradient（build 硬规则），纯色底。 */
  background: var(--surface);
  text-align: left;
}

.empty-state.dark {
  border-color: var(--line-strong);
}

.empty-state strong {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--lime-dark);
}

.empty-state strong::before {
  content: "> ";
}

.empty-state strong::after {
  content: "▍";
  margin-left: 6px;
  color: var(--lime);
  animation: empty-cursor 1.2s steps(1) infinite;
}

@keyframes empty-cursor {
  50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .empty-state strong::after { animation: none; }
}

.empty-state p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-content: center;
  justify-items: start;
  padding: 30px;
}

.not-found h1 {
  max-width: 780px;
  margin: 0 0 28px;
  font-size: var(--fs-display);
}

@media (max-width: 1000px) {
  :root {
    --content: min(100% - 36px, 820px);
  }

  .source-status {
    display: none;
  }

  .home-hero,
  .live-inner,
  .portfolio-workbench,
  .result-hero,
  .stock-hero,
  .stock-grid,
  .register-page {
    grid-template-columns: 1fr;
  }

  .home-hero {
    max-height: none;
    gap: 54px;
  }

  .hero-proof {
    width: min(650px, calc(100% - 18px));
  }

  .live-inner {
    gap: 48px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-item:first-child {
    grid-column: 1 / -1;
  }

  .tool-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tool-promise {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-workbench {
    gap: 10px;
  }

  .result-hero {
    gap: 45px;
  }

  .result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .result-stats div {
    display: block;
  }

  .stock-grid {
    gap: 10px;
  }

  .stock-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .stock-sidebar section {
    border-bottom: 0;
  }

  .register-page {
    align-items: start;
    gap: 55px;
  }

  .asset-search { max-width: 820px; }
  .asset-market-map { grid-template-columns: 1fr; }
  .asset-map-rail { border-top: 1px solid rgba(241,244,238,.26); border-left: 0; }
  .asset-map-detail { min-height: 310px; }
  .asset-index-row { grid-template-columns: 100px minmax(0,1fr) 76px 62px 18px; }
  .asset-index-next { display: none; }
}

@media (max-width: 760px) {
  :root {
    --content: calc(100% - 28px);
    --header-height: 62px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 0 14px;
  }

  .brand-lockup {
    width: 124px;
  }

  /* 手机上主 CTA 必须留着：社交流量绝大多数在手机上，把唯一的转化入口
     藏进汉堡菜单等于把顶栏漏斗掐掉。让位的是数据状态 chip 和账户位。 */
  .header-actions .source-status,
  .header-actions .account-slot {
    display: none;
  }

  .header-actions .button {
    padding: 8px 13px;
    font-size: var(--fs-sm);
    white-space: nowrap;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    padding: 10px 14px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  /* 单列必须显式写 1fr：隐式 auto 轨道只有内容那么宽（实测 117px），
     菜单项会缩在左边一条，右边 2/3 是死区——中文和 mono 副标也就贴到一起了。 */
  .main-nav.open {
    display: grid;
    grid-template-columns: 1fr;
  }

  /* 竖排菜单里两层标签改成左右分布：中文靠左当行标题，
     mono 副标靠右当索引，比堆成两行紧凑也好扫。 */
  .main-nav a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .main-nav a small {
    margin-top: 0;
  }

  .main-nav a.active::after {
    display: none;
  }

  .asset-explorer-hero {
    padding: 34px 0 40px;
  }

  .asset-explorer-topline {
    margin-bottom: 24px;
  }

  .asset-explorer-topline > span {
    display: none;
  }

  .asset-explorer-copy h1 {
    font-size: var(--fs-3xl);
  }

  .asset-search { padding: 15px; }
  .asset-search > label { align-items: flex-start; flex-direction: column; gap: 5px; }
  .asset-search-control { min-height: 104px; grid-template-columns: minmax(0,1fr) 48px; }
  .asset-search textarea { min-height: 100px; padding: 18px 14px; font-size: var(--fs-xl); }
  .asset-search-submit { width: 36px; height: 36px; margin: 0 8px 9px 0; }
  .asset-search-prompts { display: grid; }
  .asset-search-foot { align-items: flex-start; flex-direction: column; }

  .asset-map-section { padding: 42px 0 48px; }
  .asset-map-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .asset-map-heading > p { align-items: flex-start; }
  .asset-market-map { width: 100%; min-height: 0; border-right: 0; border-left: 0; }
  .asset-map-canvas { overflow-x: auto; padding-inline: 14px; }
  .asset-map-flow-guide { width: 720px; grid-template-columns: 1fr 1.4fr 1fr; }
  .asset-map-canvas svg { width: 720px; max-width: none; min-height: 408px; }
  .asset-map-canvas-note { position: sticky; left: 0; width: calc(100vw - 58px); padding-bottom: 8px; }
  .asset-map-detail { min-height: 0; padding: 22px; }
  .asset-index-section { padding-top: 50px; }
  .asset-index-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .asset-index-row { grid-template-columns: 80px minmax(0,1fr) 62px 18px; gap: 10px; min-height: 88px; padding-inline: 5px; }
  .asset-index-bias { display: none; }
  .asset-index-code b { font-size: var(--fs-xl); }
  .asset-index-thesis b { font-size: var(--fs-xs); }

  .home-hero {
    width: var(--content);
    min-height: auto;
    padding: 52px 0 72px;
  }

  .home-copy h1,
  .tool-hero h1,
  .page-hero h1,
  .register-page h1 {
    font-size: var(--fs-3xl);
    line-height: var(--lh-heading);
  }

  .hero-lede,
  .tool-hero > div > p:last-child,
  .page-hero > p:last-child {
    margin: 22px 0 28px;
    font-size: var(--fs-lg);
  }

  .hero-actions,
  .result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-action {
    justify-content: center;
  }

  .hero-proof {
    width: calc(100% - 10px);
    min-height: 480px;
    padding: 24px;
    box-shadow: 10px 12px 0 var(--lime);
  }

  .hero-proof > p {
    margin-top: 40px;
    font-size: var(--fs-3xl);
  }

  .proof-map {
    gap: 7px;
  }

  .live-band {
    padding: 56px 0;
  }

  .live-summary > div:first-child,
  .stock-meta,
  .result-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 38px;
  }

  .live-summary h2 {
    font-size: var(--fs-4xl);
  }

  .product-section {
    padding: 74px 0 84px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: var(--fs-4xl);
  }

  .product-grid,
  .stock-sidebar,
  .monitor-options {
    grid-template-columns: 1fr;
  }

  .product-item:first-child {
    grid-column: auto;
  }

  .product-item {
    min-height: 270px;
  }

  .page-hero,
  .tool-hero,
  .monitor-hero {
    padding-top: 62px;
  }

  .page-hero.compact {
    width: var(--content);
    margin: 0 auto;
  }

  .tool-hero {
    padding-bottom: 42px;
  }

  .tool-promise {
    grid-template-columns: 1fr;
  }

  .portfolio-form,
  .workbench-preview,
  .monitor-picker {
    padding: 24px 18px;
  }

  .workbench-preview blockquote {
    margin: 34px 0;
    font-size: var(--fs-2xl);
  }

  .result-hero {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .result-hero h2 {
    font-size: var(--fs-4xl);
  }

  .result-stats {
    grid-template-columns: 1fr 1fr;
  }

  .result-stats div:last-child {
    grid-column: 1 / -1;
  }

  .result-holdings {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-section {
    padding: var(--band-pad) 0;
  }

  .story-row {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .exposure-number {
    grid-column: 2;
    text-align: left;
  }

  .story-content dl {
    grid-template-columns: 1fr;
  }

  .method-callout {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .stock-shell {
    padding-top: 28px;
  }

  .stock-search {
    margin-bottom: 24px;
  }

  .stock-hero,
  .stock-main,
  .stock-sidebar {
    padding: var(--card-pad-lg);
  }

  .stock-hero {
    gap: 35px;
  }

  .stock-hero h1 {
    font-size: var(--fs-mega);
    overflow-wrap: anywhere;
  }

  .stock-hero h2 {
    font-size: var(--fs-2xl);
  }

  .stock-main .section-heading h2 {
    font-size: var(--fs-3xl);
  }

  .contribution-row {
    grid-template-columns: 31px minmax(0, 1fr);
  }

  .contribution-row > .direction {
    grid-column: 2;
    justify-self: start;
  }

  .monitor-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .monitor-hero h1 {
    font-size: var(--fs-3xl);
  }

  .monitor-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .monitor-summary dl {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }

  .monitor-row {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .monitor-row > b {
    display: none;
  }

  .monitor-row > div > small {
    white-space: normal;
  }

  .feed-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .feed-when {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .feed-new {
    margin-top: 0;
  }

  .picker-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .register-page {
    min-height: auto;
    padding-top: 62px;
  }


  .register-page-steps {
    padding: var(--card-pad-lg);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .modal {
    align-items: start;
    padding: 10px;
  }

  .register-dialog,
  .share-dialog {
    grid-template-columns: 1fr;
  }

  .register-value {
    padding: 38px 24px;
    border-radius: var(--r-m) var(--r-m) 0 0;
  }

  .register-value h2 {
    font-size: var(--fs-4xl);
  }

  .register-embed {
    padding: 30px 18px;
  }

  .share-dialog {
    padding: 32px 18px 20px;
  }

  .share-dialog canvas {
    width: min(100%, 360px);
    grid-row: auto;
    grid-column: auto;
  }

  .share-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* screenshot upload flow */
.portfolio-input {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.upload-panel {
  padding: var(--card-pad-lg);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: var(--white);
}

.dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 52px 24px;
  border: 1px dashed rgba(241,244,238,.26);
  border-radius: var(--r-m);
  background: var(--surface-raised);
  cursor: pointer;
  text-align: center;
}

.dropzone:hover,
.dropzone.dragging {
  border-color: var(--lime);
  background: rgba(201,255,67,.08);
}

.dropzone-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lime);
  font-size: var(--fs-2xl);
  font-weight: 800;
}

.dropzone strong {
  font-size: var(--fs-xl);
}

.dropzone span {
  color: var(--muted);
  font-size: var(--fs-md);
}

.dropzone small {
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--fs-xs);
}

.parse-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px 0;
  color: var(--muted);
  font-size: var(--fs-md);
}

.confirm-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.confirm-row {
  display: grid;
  grid-template-columns: 110px 1fr 116px 34px;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: var(--surface);
}

.confirm-ticker {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: var(--fs-md);
  font-weight: 800;
  text-transform: uppercase;
}

.confirm-name {
  overflow: hidden;
  color: var(--muted);
  font-size: var(--fs-sm);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.confirm-weight {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: var(--fs-md);
}

.confirm-weight input {
  width: 74px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-s);
  background: var(--white);
  font-size: var(--fs-md);
  text-align: right;
}

.confirm-weight b {
  color: var(--muted);
}

.confirm-remove {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: var(--r-s);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.confirm-remove:hover {
  background: rgba(255,112,93,.14);
  color: #ff8f82;
}

.share-hint {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: var(--fs-sm);
}

@media (max-width: 900px) {
  .upload-panel {
    padding: 24px 18px;
  }

  .dropzone {
    padding: 38px 16px;
  }

  .confirm-row {
    grid-template-columns: 90px 1fr 100px 30px;
  }
}

/* ============================================================
   Landing v4 — 专业投研引擎 · 内测注册落地页（lp- 命名空间）
   浅色高级 / 动效 / 禁 gradient
   ============================================================ */

.lp {
  overflow-x: clip;
}

.lp-serif {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-lg);
  color: var(--lime-text);
  letter-spacing: .01em;
}

.lp-serif.light {
  color: rgba(241,244,238,.64);
}

.lp-mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ---------- 进入动效（2026-08-17 删）----------
   .lp-rise / .lp-mask / [data-reveal] 全部移除：只有首页挂着这一层，
   /market、/people、两台雷达页一个都没有——同一个站一半页面在做入场动画、
   一半直接摆数据，读起来就是首页在"演"。工具不演。 */

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

.lp-hero {
  position: relative;
  padding: var(--band-pad-hero) 0 var(--band-pad);
}

.lp-hero::before,
.lp-narrative::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
}

.lp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.22fr .92fr;
  gap: var(--col-gap);
  align-items: start;
}

.lp-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--sp-3);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--track-wide);
  color: var(--muted);
}

.lp-eyebrow b {
  padding: 3px 9px;
  border: 1px solid currentColor;
  color: var(--lime);
  border-radius: 999px;
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  font-weight: 800;
}

.lp-pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime-dark);
  flex: none;
}

.lp-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid var(--lime-dark);
  animation: lpPing 2.4s ease-out infinite;
}

@keyframes lpPing {
  0% {
    transform: scale(.55);
    opacity: .9;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.lp-h1 {
  margin: 0 0 26px;
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: var(--track-display);
}

.lp-lede {
  margin: 0 0 34px;
  max-width: 33em;
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
  color: var(--muted);
}

.lp-hero-stats {
  display: flex;
  gap: 0;
  margin: 0 0 36px;
}

.lp-hero-stats > div {
  padding: 2px 32px;
  border-left: 1px solid var(--line-soft);
}

.lp-hero-stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.lp-hero-stats b {
  display: block;
  font-size: var(--fs-3xl);
  font-weight: 700;
  letter-spacing: var(--track-tight);
}

.lp-hero-stats b.lp-stat-time {
  font-size: var(--fs-lg);
  font-weight: 600;
  padding-top: 9px;
  min-height: 34px;
}

.lp-hero-stats span {
  display: block;
  margin-top: 5px;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 0 16px;
}

.lp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 0;
  border-radius: var(--r-l);
  background: var(--ink);
  color: var(--text);
  font-size: var(--fs-lg);
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .25s ease;
}

.lp-cta i {
  font-style: normal;
  color: var(--lime);
  transition: transform .22s ease;
}

.lp-cta:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.lp-cta:hover i {
  transform: translateX(4px);
}

.lp-cta:active {
  transform: translateY(0) scale(.985);
}

.lp-cta-full {
  width: 100%;
}

.lp-cta-light {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,.3), 0 16px 36px -14px rgba(201,255,67,.35);
}

.lp-cta-light i {
  color: var(--ink);
}

.lp-cta-big {
  padding: 20px 40px;
  font-size: var(--fs-xl);
  border-radius: var(--r-l);
}

/* 这个类同时用在 <a> 和 <button> 上。<button> 带 UA 灰底（buttonface），
   不清掉就会在深色 CTA 条里变成白字压浅灰——传播入口直接消失。 */
.lp-ghost {
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: var(--fs-md);
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s ease;
}

.lp-ghost:hover { opacity: .72; }

.lp-hero-note {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* ---------- 注册卡 ---------- */

.lp-reg-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-l);
  padding: var(--card-pad);
  box-shadow: none;
}

.lp-reg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  border-radius: var(--r-l) var(--r-l) 0 0;
}

.lp-reg-kicker {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.lp-reg-kicker b {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--track-wide);
  color: var(--muted);
}

.lp-reg-card h2 {
  margin: 16px 0 8px;
  font-size: var(--fs-2xl);
  line-height: var(--lh-heading);
  letter-spacing: var(--track-tight);
}

.lp-reg-steps {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
}

.lp-reg-steps li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-md);
  font-weight: 600;
}

.lp-reg-steps b {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--lime-text);
  flex: none;
}

.lp-reg-bit {
  margin: 14px 0 0;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.lp-reg-trust {
  margin: 6px 0 0;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.lp-reg-legal {
  margin: 14px 0 0;
  text-align: center;
  font-size: var(--fs-xs);
  line-height: var(--lh-body);
  color: var(--muted);
}

/* ---------- 引擎实况带 ---------- */

.lp-wire {
  background: var(--ink);
  color: var(--text);
  padding: 20px 0 24px;
  overflow: hidden;
}

.lp-wire-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
  font-size: var(--fs-xs);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: rgba(241,244,238,.52);
}

.lp-wire-head .lp-serif {
  text-transform: none;
  letter-spacing: .01em;
  font-size: var(--fs-md);
}

.lp-wire-head > span:last-child {
  margin-left: auto;
}

/* .lp-mode 2026-08-17 删：它是 modeBadge()（styles.css:191 .mode-badge）的第二套
   实现，只有首页那三处 lpModeChip 在用，现已统一到 modeBadge。 */

.lp-wire-viewport {
  overflow: hidden;
}

.lp-wire-track {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  will-change: transform;
}

.lp-wire-track.moving {
  animation: lpMarquee 52s linear infinite;
}

.lp-wire-track.moving:hover {
  animation-play-state: paused;
}

@keyframes lpMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lp-wire-item {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  font-size: var(--fs-md);
}

.lp-wire-item b {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--lime);
}

.lp-wire-item span {
  color: rgba(241,244,238,.9);
}

.lp-wire-item small {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: rgba(241,244,238,.4);
}

.lp-wire-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(241,244,238,.26);
  flex: none;
}

/* ---------- 能力矩阵 ---------- */

.lp-caps {
  padding: var(--band-pad) 0;
}

.lp-section-head {
  max-width: 660px;
  margin-bottom: 44px;
}

.lp-section-head h2 {
  margin: 10px 0 12px;
  font-size: var(--fs-h2);
  letter-spacing: var(--track-display);
  line-height: var(--lh-tight);
}

.lp-section-head p {
  margin: 0;
  font-size: var(--fs-lg);
  line-height: var(--lh-body);
  color: var(--muted);
}

.lp-cap-list {
  border-top: 1px solid var(--line-soft);
}

.lp-cap {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 340px;
  gap: 40px;
  align-items: center;
  padding: 36px 8px;
  border-bottom: 1px solid var(--line-soft);
}

.lp-cap::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 20%;
  bottom: 20%;
  width: 3px;
  border-radius: var(--r-s);
  background: var(--lime);
  opacity: 0;
  transform: scaleY(.4);
  transition: opacity .25s ease, transform .3s ease;
}

.lp-cap:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.lp-cap-number {
  font-family: var(--font-mono);
  font-size: var(--fs-md);
  color: var(--muted);
  transition: color .2s ease;
}

.lp-cap:hover .lp-cap-number {
  color: var(--lime-text);
}

.lp-cap-text em {
  font-size: var(--fs-md);
}

.lp-cap-text h3 {
  margin: 7px 0 9px;
  font-size: var(--fs-2xl);
  letter-spacing: var(--track-tight);
}

.lp-cap-text p {
  margin: 0 0 13px;
  max-width: 44em;
  font-size: var(--fs-lg);
  line-height: var(--lh-body);
  color: var(--muted);
}

.lp-cap-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-md);
  font-weight: 700;
}

.lp-cap-action i {
  font-style: normal;
  color: var(--lime-text);
  transition: transform .22s ease;
}

.lp-cap:hover .lp-cap-action i {
  transform: translateX(4px);
}

.lp-mini {
  position: relative;
  display: grid;
  gap: 11px;
  padding: var(--card-pad);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-l);
  box-shadow: none;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
}

.lp-cap:hover .lp-mini {
  transform: translateY(-6px);
  box-shadow: none;
}

.lp-mini > small {
  position: absolute;
  top: 9px;
  right: 12px;
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--muted);
}

.lp-mini-bar {
  height: 10px;
  border-radius: 999px;
  background: var(--surface-raised);
  overflow: hidden;
}

.lp-mini-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  box-shadow: inset -2px 0 0 var(--lime-dark);
}

.lp-mini-line {
  margin: 0;
  font-size: var(--fs-md);
  color: var(--muted);
}

.lp-mini-line b {
  font-family: var(--font-mono);
  font-size: var(--fs-lg);
  color: var(--text);
}

.lp-mini-line.strong {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text);
}

.lp-mini-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lp-mini-chips span {
  padding: 4px 9px;
  border-radius: var(--r-m);
  background: var(--surface-raised);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--muted);
}

.lp-mini-feed {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-sm);
  min-width: 0;
}

.lp-mini-feed i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--muted-light);
  flex: none;
}

.lp-mini-feed i.fresh {
  background: var(--lime-dark);
  box-shadow: 0 0 0 3px rgba(201,255,67,.35);
}

.lp-mini-feed b {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  flex: none;
}

.lp-mini-feed span {
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-mini-stance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.lp-mini-stance b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-lg);
  color: var(--text);
}

.lp-mini-stance b i {
  font-style: normal;
  color: var(--lime-text);
}

/* ---------- 叙事深讲（暗景） ---------- */

.lp-narrative {
  position: relative;
  padding: var(--band-pad) 0;
  background: var(--ink);
  color: var(--text);
  overflow: hidden;
}

.lp-narrative-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--col-gap);
  align-items: center;
}

.lp-narrative-copy h2 {
  margin: 12px 0 20px;
  font-size: var(--fs-h2);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-display);
}

.lp-narrative-lede {
  margin: 0 0 24px;
  font-size: var(--fs-lg);
  line-height: var(--lh-body);
  color: rgba(241,244,238,.9);
}

.lp-state-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
}

.lp-state-chips li {
  padding: 7px 17px;
  border: 1px solid rgba(241,244,238,.26);
  border-radius: 999px;
  font-size: var(--fs-md);
  color: rgba(241,244,238,.9);
}

.lp-narrative-note {
  margin: 0 0 30px;
  font-size: var(--fs-md);
  color: rgba(241,244,238,.52);
}

.lp-sample-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--r-l);
  padding: var(--card-pad);
  box-shadow: 0 40px 90px -34px rgba(0,0,0,.6);
  animation: lpFloat 7s ease-in-out infinite;
}

@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.lp-sample-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line-soft);
}

.lp-sample-top b {
  font-family: var(--font-mono);
  font-size: var(--fs-md);
  letter-spacing: var(--track-label);
}

.lp-sample-card .lp-mode.live {
  color: var(--lime-text);
}

.lp-sample-card .lp-mode.live i {
  background: var(--lime-dark);
  box-shadow: 0 0 8px rgba(135,179,0,.7);
}

.lp-sample-card .lp-mode.demo {
  color: var(--muted);
}

.lp-sample-card .lp-mode.demo i {
  background: var(--muted-light);
}

.lp-sample-row {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}

.lp-sample-row:last-child {
  border-bottom: 0;
}

.lp-sample-row span {
  padding-top: 2px;
  font-size: var(--fs-xs);
  letter-spacing: .04em;
  color: var(--muted);
}

.lp-sample-row p {
  margin: 0;
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--text);
}

/* ---------- 信任与主体 ---------- */

.lp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--col-gap);
  padding: var(--band-pad) 0;
}

.lp-trust > div {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
}

.lp-trust h3 {
  margin: 9px 0 10px;
  font-size: var(--fs-xl);
  letter-spacing: var(--track-tight);
}

.lp-trust p {
  margin: 0;
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--muted);
}

/* ---------- 尾部 CTA ---------- */

.lp-final {
  padding: var(--band-pad) 0;
}

.lp-final-inner {
  text-align: center;
}

.lp-final h2 {
  margin: 12px 0 14px;
  font-size: var(--fs-display);
  letter-spacing: var(--track-display);
}

.lp-final p {
  margin: 0 0 32px;
  font-size: var(--fs-lg);
  color: var(--muted);
}

.lp-final small {
  display: block;
  margin-top: 20px;
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* ---------- 降级与响应式 ---------- */

@media (prefers-reduced-motion: reduce) {
  .lp-wire-track.moving,
  .lp-sample-card,
  .lp-pulse::after {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .lp-hero {
    padding: 52px 0 64px;
  }

  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lp-cap {
    grid-template-columns: 44px 1fr;
    gap: 20px;
  }

  .lp-cap .lp-mini {
    grid-column: 2;
    max-width: 430px;
  }

  .lp-narrative-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .lp-trust {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 70px;
  }
}

@media (max-width: 640px) {
  .lp-h1 {
    font-size: var(--fs-3xl);
  }

  .lp-lede {
    font-size: var(--fs-lg);
  }

  .lp-hero-stats {
    flex-wrap: wrap;
    gap: 18px 0;
  }

  .lp-hero-stats > div {
    padding: 0 22px;
  }

  .lp-hero-stats > div:first-child {
    padding-left: 0;
  }

  .lp-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .lp-hero-actions .lp-ghost {
    text-align: center;
    border-bottom: 0;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .lp-reg-card {
    padding: 24px 20px 20px;
  }

  .lp-caps {
    padding-top: 70px;
  }

  .lp-cap {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 4px;
  }

  .lp-cap .lp-mini {
    grid-column: 1;
  }

  .lp-narrative {
    padding: 72px 0;
  }

  .lp-final {
    padding: 64px 0 88px;
  }
}

/* ===== v4.1 · ask-first hero + outcomes strip ===== */

.lp-ask {
  margin: 0 0 34px;
  max-width: 580px;
}

.lp-ask-box {
  display: flex;
  border: 1px solid rgba(241,244,238,.26);
  border-radius: var(--r-l);
  background: var(--surface-raised);
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow .2s ease;
}

.lp-ask-box:focus-within {
  box-shadow: none;
}

.lp-ask-box input {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
  border: 0;
  background: transparent;
  font-size: var(--fs-lg);
  color: var(--text);
  outline: none;
}

.lp-ask-box input::placeholder {
  color: var(--muted);
}

.lp-ask-box button {
  border: 0;
  cursor: pointer;
  padding: 0 24px;
  background: var(--lime);
  color: var(--ink);
  font-size: var(--fs-lg);
  font-weight: 700;
  transition: color .18s ease;
}

.lp-ask-box button:hover {
  color: var(--lime);
}

.lp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 14px 0 0;
}

.lp-chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border: 1px solid rgba(241,244,238,.26);
  border-radius: 999px;
  background: rgba(241,244,238,.05);
  color: rgba(241,244,238,.76);
  font-size: var(--fs-md);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.lp-chip:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
  transform: translateY(-1px);
}

.lp-chip i {
  font-style: normal;
  font-size: var(--fs-sm);
}

.lp-answer {
  margin: 18px 0 0;
  padding: var(--card-pad);
  background: var(--surface-raised);
  border: 1px solid rgba(241,244,238,.14);
  border-radius: var(--r-l);
  position: relative;
  box-shadow: none;
}

.lp-answer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  background: var(--lime);
  border-radius: 0 0 var(--r-s) var(--r-s);
}

.lp-answer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 10px;
  font-size: var(--fs-md);
}

.lp-answer-head b {
  font-weight: 800;
  letter-spacing: var(--track-tight);
}

.lp-answer-verdict {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 5px 12px;
  padding: 14px 0 16px;
}

.lp-answer-verdict > span {
  grid-row: 1 / 3;
  align-self: start;
  padding: 5px 8px;
  border: 1px solid var(--ink);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 800;
}

.lp-answer-verdict b {
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
}

.lp-answer-verdict p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}

.lp-answer-foot-link .lp-cta {
  color: var(--lime);
  text-decoration: none;
}

.lp-answer-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line-soft);
}

.lp-answer-row span {
  font-size: var(--fs-sm);
  color: var(--muted);
  padding-top: 2px;
}

.lp-answer-row p {
  margin: 0;
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--text);
}

.lp-answer-row a {
  color: inherit;
  font-weight: 700;
  text-decoration-color: var(--lime-text);
}

.lp-answer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
  padding-top: 13px;
  border-top: 1px solid var(--line-soft);
}

.lp-answer-foot p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.lp-cta-small {
  padding: 10px 18px;
  font-size: var(--fs-md);
  border-radius: var(--r-l);
  white-space: nowrap;
}

.lp-answer-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-md);
  color: var(--muted);
  padding: 6px 0;
}

.lp-answer-loading i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime-dark);
  animation: lpPing 1.1s ease-out infinite;
}

.lp-answer-miss {
  margin: 0 0 12px;
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: var(--lh-body);
}

.lp-answer-miss a {
  color: inherit;
  font-weight: 700;
  text-decoration-color: var(--lime-text);
}

.lp-answer-retry {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--line-soft);
}

.lp-outcome {
  display: block;
  padding: 4px 28px 6px;
  border-left: 1px solid var(--line-soft);
}

.lp-outcome:first-child {
  padding-left: 0;
  border-left: 0;
}

.lp-outcome b {
  display: block;
  font-size: var(--fs-sm);
  color: var(--lime-text);
  font-weight: 700;
  margin-bottom: 10px;
}

.lp-outcome h3 {
  margin: 0 0 7px;
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: var(--track-tight);
}

.lp-outcome p {
  margin: 0;
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--muted);
}

.lp-outcome:hover h3 {
  text-decoration: underline;
  text-decoration-color: var(--lime-text);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 1080px) {
  .lp-outcomes {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }

  .lp-outcome:nth-child(3) { grid-column: 1 / -1; border-left: 0; padding-left: 0; }
}

@media (max-width: 640px) {
  .lp-ask {
    max-width: none;
  }

  .lp-ask-box input {
    padding: 13px 14px;
    font-size: var(--fs-lg);
  }

  .lp-ask-box button {
    padding: 0 18px;
    font-size: var(--fs-md);
  }

  .lp-answer-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .lp-answer-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .lp-outcomes {
    grid-template-columns: 1fr;
    row-gap: 22px;
    padding: 26px 0;
  }

  .lp-outcome {
    border-left: 0;
    padding: 0;
  }
}

/* ===== v4.2 · tools arsenal (dark, follows wire band) ===== */

.lp-tools {
  position: relative;
  background: var(--ink);
  color: var(--text);
  padding: var(--sp-2) 0 var(--band-pad);
  overflow: hidden;
}

.lp-tools::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.lp-tools > .content-width {
  position: relative;
}

.lp-section-head-dark {
  border-top: 1px solid rgba(241,244,238,.14);
  padding-top: 34px;
  margin-bottom: 40px;
}

.lp-section-head-dark h2 {
  margin: 10px 0 10px;
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: var(--track-tight);
}

.lp-section-head-dark p {
  margin: 0;
  font-size: var(--fs-md);
  color: rgba(241,244,238,.64);
}

.lp-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.lp-tool {
  display: flex;
  flex-direction: column;
  padding: var(--card-pad);
  border: 1px solid rgba(241,244,238,.14);
  border-radius: var(--r-l);
  background: rgba(241,244,238,.05);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.lp-tool:hover {
  transform: translateY(-4px);
  border-color: rgba(201,255,67,.5);
  background: rgba(241,244,238,.05);
}

.lp-tool-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.lp-tool-top b {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--track-wide);
  color: rgba(241,244,238,.76);
}

.lp-tool-status {
  font-size: var(--fs-xs);
  letter-spacing: var(--track-label);
  padding: 4px 10px;
  border: 1px solid rgba(201,255,67,.5);
  border-radius: 999px;
  color: var(--lime);
}

.lp-tool-status-build {
  border-color: rgba(241,244,238,.26);
  color: rgba(241,244,238,.64);
}

.lp-tool > em {
  font-size: var(--fs-md);
  color: rgba(241,244,238,.52);
}

.lp-tool h3 {
  margin: 6px 0 10px;
  font-size: var(--fs-2xl);
  font-weight: 800;
  letter-spacing: var(--track-tight);
}

.lp-tool p {
  margin: 0 0 18px;
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: rgba(241,244,238,.64);
  flex: 1;
}

.lp-tool p strong {
  color: rgba(241,244,238,.9);
  font-weight: 700;
}

.lp-tool-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(241,244,238,.14);
}

.lp-tool-by {
  font-size: var(--fs-sm);
  font-family: var(--font-mono);
  color: rgba(241,244,238,.52);
}

.lp-tool-foot .lp-tool-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--lime);
}

.lp-tool-foot .lp-tool-link i { font-style: normal; }

.lp-tool-foot button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: none;
  padding: 4px 0;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}

.lp-tool-foot button i {
  font-style: normal;
  color: var(--lime);
  transition: transform .2s ease;
}

.lp-tool-foot button:hover {
  color: var(--lime);
}

.lp-tool-foot button:hover i {
  transform: translateX(4px);
}

.lp-tool-slot {
  border-style: dashed;
  border-color: rgba(241,244,238,.26);
  background: transparent;
}

.lp-tool-slot:hover {
  border-color: rgba(201,255,67,.5);
  transform: none;
}

.lp-tool-slot h3 {
  color: var(--lime);
}

@media (max-width: 1080px) {
  .lp-tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lp-tools {
    padding: 14px 0 64px;
  }

  .lp-tool-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lp-section-head-dark {
    padding-top: 26px;
    margin-bottom: 28px;
  }
}

/* ===== v4.4 · cross-market block in answer card ===== */

.lp-answer-cross {
  margin-top: 12px;
  padding: 14px 16px 12px;
  background: var(--ink);
  color: var(--text);
  border-radius: var(--r-l);
}

.lp-cross-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.lp-cross-head b {
  font-size: var(--fs-md);
  font-weight: 800;
}

.lp-cross-head span {
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-wide);
  color: rgba(241,244,238,.52);
}

.lp-cross-item {
  padding: 9px 0;
  border-top: 1px solid rgba(241,244,238,.14);
}

.lp-cross-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.lp-cross-title b {
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: var(--track-tight);
}

.lp-cross-title small {
  font-size: var(--fs-xs);
  color: rgba(241,244,238,.4);
  white-space: nowrap;
}

.lp-cross-item p {
  margin: 5px 0 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: rgba(241,244,238,.76);
}

.lp-cross-assets {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.lp-cross-assets span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(241,244,238,.26);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-family: var(--font-mono);
  color: rgba(241,244,238,.9);
}

.lp-cross-assets span b {
  font-weight: 700;
  color: var(--lime);
}

.lp-answer-cross .lp-answer-loading {
  color: rgba(241,244,238,.52);
}

.lp-cross-note {
  margin: 10px 0 0;
  font-size: var(--fs-2xs);
  color: rgba(241,244,238,.4);
}

.lp-tool-live {
  border-color: rgba(201,255,67,.35);
}

/* ── v4.5 买入逻辑检查面板（美股 thesis check，数据全部来自图谱真实事件） ── */
.lp-thesis {
  margin-top: 12px;
  background: var(--ink);
  color: var(--text);
  border-radius: var(--r-l);
  overflow: hidden;
}

.lp-thesis-verdict {
  padding: 16px 18px 6px;
}

.lp-thesis-verdict em {
  display: block;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-wide);
  color: var(--lime);
  margin-bottom: 8px;
}

.lp-thesis-verdict b {
  display: block;
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
}

.lp-thesis-verdict p {
  margin: 7px 0 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: rgba(241,244,238,.76);
}

.lp-thesis-stage {
  padding: 2px 6px 0;
}

.lp-thesis-stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px 0;
  font-family: var(--font-mono);
}

.lp-thesis-stage-head span {
  color: var(--lime);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-wide);
}

.lp-thesis-stage-head small {
  color: rgba(241,244,238,.4);
  font-size: var(--fs-2xs);
}

.lp-thesis-stage svg {
  width: 100%;
  height: auto;
  display: block;
}

.lp-tg-edge {
  stroke-dasharray: 5 8;
  stroke-width: 1.4;
  opacity: .62;
  animation: tgEdgeFlow 9s linear infinite;
}

.lp-tg-edge.support { stroke: rgba(201,255,67,.65); }
.lp-tg-edge.counter { stroke: var(--coral-text); }

.lp-tg-node { cursor: pointer; }
.lp-tg-node:focus-visible { outline: none; }
.lp-tg-node:focus-visible .lp-tg-disc { stroke-width: 3; }

.lp-tg-disc {
  fill: rgba(241,244,238,.05);
  stroke: rgba(241,244,238,.4);
  stroke-width: 1.2;
  transition: stroke-width .25s ease, fill .25s ease;
}

.lp-tg-node.focus .lp-tg-node.support .lp-tg-disc { stroke: var(--lime); }
.lp-tg-node.counter .lp-tg-disc { stroke: var(--coral-text); }
.lp-tg-node.watch .lp-tg-disc { stroke: var(--amber-text); }
.lp-tg-node.focus .lp-tg-disc { fill: rgba(201,255,67,.14); stroke-width: 2.6; }

.lp-tg-tag {
  fill: var(--paper);
  font-size: var(--fs-md);
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: middle;
}

.lp-tg-node.support .lp-tg-tag { fill: var(--lime); }
.lp-tg-node.counter .lp-tg-tag { fill: #ff8f82; }
.lp-tg-node.watch .lp-tg-tag { fill: var(--amber-text); }

.lp-tg-label {
  fill: rgba(241,244,238,.9);
  font-size: var(--fs-md);
  text-anchor: middle;
}

.lp-tg-sub {
  fill: rgba(241,244,238,.4);
  font-size: var(--fs-2xs);
  text-anchor: middle;
}

.lp-tg-core { fill: var(--lime); }

.lp-tg-core-ring {
  fill: none;
  stroke: rgba(201,255,67,.35);
  stroke-width: 1;
  animation: stockCorePulse 2.4s ease-in-out infinite;
}

.lp-tg-core-code {
  fill: var(--ink);
  font-family: var(--font-mono);
  font-size: var(--fs-xl);
  font-weight: 800;
  text-anchor: middle;
}

.lp-tg-core-state {
  fill: var(--ink);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-anchor: middle;
}

.lp-thesis-timeline {
  padding: 10px 18px 16px;
  border-top: 1px solid rgba(241,244,238,.14);
}

.lp-thesis-tl-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 34px;
}

.lp-thesis-tl-head span {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--lime);
  white-space: nowrap;
}

.lp-thesis-tl-head b {
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: var(--lh-snug);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.lp-thesis-replay {
  border: 1px solid rgba(241,244,238,.26);
  background: transparent;
  color: var(--text);
  font-size: var(--fs-2xs);
  padding: 5px 10px;
  border-radius: var(--r-m);
  cursor: pointer;
}

.lp-thesis-replay:hover { border-color: var(--lime); color: var(--lime); }

.lp-thesis-timeline input[type="range"] {
  width: 100%;
  margin: 8px 0 0;
  accent-color: var(--lime);
  cursor: pointer;
}

.lp-thesis-evidence {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(241,244,238,.05);
  border: 1px solid rgba(241,244,238,.14);
  border-radius: var(--r-m);
}

.lp-thesis-evidence em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-wide);
  color: rgba(241,244,238,.52);
}

.lp-thesis-evidence p {
  margin: 5px 0 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: rgba(241,244,238,.9);
}

.lp-thesis-graph-empty {
  margin: 20px 18px;
  padding: 30px;
  border: 1px dashed rgba(241,244,238,.26);
}

.lp-thesis-graph-empty b { font-size: var(--fs-md); }
.lp-thesis-graph-empty p { margin: 7px 0 0; color: rgba(241,244,238,.52); font-size: var(--fs-sm); line-height: var(--lh-body); }

@keyframes stockNodePulse {
  0% { opacity: .75; transform: scale(.82); }
  100% { opacity: 0; transform: scale(1.24); }
}

@keyframes stockCorePulse {
  0%, 100% { opacity: .35; transform: scale(.96); }
  50% { opacity: .8; transform: scale(1.05); }
}

.lp-thesis-cells {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.lp-thesis-cells > div {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-l);
  padding: 11px 12px;
  background: rgba(8,10,9,.02);
}

.lp-thesis-cells span {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--lime-text);
}

.lp-thesis-cells p {
  margin: 5px 0 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: var(--text);
}

@media (max-width: 640px) {
  .lp-thesis-cells { grid-template-columns: 1fr; }
  .lp-thesis-tl-head b { font-size: var(--fs-xs); }
  .lp-tg-label { font-size: var(--fs-lg); }
  .lp-tg-sub { font-size: var(--fs-sm); }
}

/* ---------------------------------------------------------------- 人物影响图谱 v4.6 */
.lp-ig-hero {
  background: var(--ink);
  color: var(--text);
  padding: var(--band-pad-hero) 0 var(--band-pad);
}

.lp-ig-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--col-gap);
  align-items: end;
}

.lp-ig-hero .lp-eyebrow { color: var(--lime); }
.lp-ig-hero .lp-h1 { color: var(--text); }
.lp-ig-hero .lp-lede { color: var(--text-2); max-width: 620px; }

.lp-ig-hero-note {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.lp-ig-hero-note b { font-size: var(--fs-md); }

.lp-ig-hero-note p {
  margin: 8px 0 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: var(--muted);
}

.lp-ig-hero-note span {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--lime);
}

.lp-ig-library { padding: var(--sp-8) 0 0;
 }

.lp-ig-lib-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: var(--head-gap);
}

.lp-ig-lib-head h2 { margin: 0; font-size: var(--fs-2xl); }

.lp-ig-filters { display: flex; gap: 6px; flex-wrap: wrap; }

.lp-ig-filter {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  cursor: pointer;
}

.lp-ig-filter b { margin-left: 5px; color: var(--muted); }
.lp-ig-filter.active { border-color: var(--ink); background: var(--ink); color: var(--text); }
.lp-ig-filter.active b { color: var(--lime); }

.lp-ig-people {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.lp-ig-person {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 84px;
  padding: 12px 13px;
  border: 0;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background .16s ease;
}

.lp-ig-person:hover { background: rgba(241,244,238,.05); }
.lp-ig-person.active { background: var(--ink); color: var(--text); box-shadow: inset 0 3px 0 var(--lime); }

.lp-ig-face {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #1b221c;
}

.lp-ig-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-ig-face-blank {
  color: var(--text);
  font-weight: 800;
  font-size: var(--fs-lg);
}

.lp-ig-person.active .lp-ig-face { border-color: var(--lime); }
.lp-ig-person-text { min-width: 0; }

.lp-ig-person-text b {
  display: block;
  font-size: var(--fs-sm);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-ig-person-text small {
  display: block;
  margin-top: 4px;
  font-size: var(--fs-2xs);
  line-height: var(--lh-snug);
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-ig-person.active .lp-ig-person-text small { color: var(--muted); }

.lp-ig-person-tag {
  grid-column: 2;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--lime-text);
}

.lp-ig-person-tag.archive { color: var(--amber-text); }
.lp-ig-person.active .lp-ig-person-tag { color: var(--lime); }

.lp-ig-main { padding: var(--sp-5) 0 0;
 }

.lp-ig-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 260px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-sm);
}

.lp-ig-loading i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-dark);
  animation: lp-ig-blink 1.1s infinite;
}

@keyframes lp-ig-blink { 50% { opacity: .25; } }

.lp-ig-panel {
  border: 1px solid var(--line);
  background: var(--white);
}

.lp-ig-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.lp-ig-panel-head h2 { margin: 0; font-size: var(--fs-3xl); }
.lp-ig-entity { margin: 6px 0 0; font-size: var(--fs-sm); color: var(--muted); }

.lp-ig-stamps {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

/* 图谱就是最想被转发的那张图——传播入口直接放在图谱卡头部，不让用户滚到页底才找到 */
.lp-ig-share-top {
  margin-top: 4px;
  color: var(--lime);
  font-size: var(--fs-sm);
}

.lp-ig-stamp {
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--muted);
  white-space: nowrap;
}

.lp-ig-stamp.archive { border-color: var(--amber-text); color: var(--amber-text); }

/* 关注按钮：默认 ghost，已关注后换成确认态 */
/* 关注是这页最重要的动作，从 12px 下划线小字升级成真按钮（2026-08-18 CEO：要醒目）。
   覆盖 .lp-ghost 的 border:0 + border-bottom，本规则在其后、同特异性，级联赢。 */
.lp-ig-follow {
  margin-top: 4px;
  padding: 8px 18px;
  border: 1px solid var(--lime);
  border-radius: var(--r-m);
  color: var(--lime-text);
  font-size: var(--fs-sm);
  font-weight: 800;
  transition: background .15s, color .15s;
}
.lp-ig-follow:hover { background: var(--lime); color: var(--ink); }
.lp-ig-follow.on { border-color: var(--lime); color: var(--lime-ink, #3f6212); background: var(--lime-soft, rgba(201, 255, 67, .14)); }

/* 13F 申报日历：法定截止日的倒计时/刚截止提示 */
.lp-ig-deadline {
  margin: 8px 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--muted);
}

/* 求收录口子：躺在人物卡网格下面的一行 */
.lp-ig-request {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}
.lp-ig-request input {
  flex: 1 1 220px;
  max-width: 320px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface, #fff);
  color: inherit;
  font: inherit;
  font-size: 13px;
}
.lp-ig-request .lp-ghost { font-size: 12px; }

.lp-ig-ownership {
  margin: 0;
  padding: 11px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-raised);
  font-size: var(--fs-xs);
  line-height: var(--lh-body);
  color: var(--muted);
}

.lp-ig-ownership b {
  margin-right: 9px;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--lime-text);
}

.lp-ig-archive-note {
  margin: 0;
  padding: 11px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(246,184,74,.1);
  font-size: var(--fs-xs);
  line-height: var(--lh-body);
  color: var(--amber-text);
}

.lp-ig-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 348px;
}

.lp-ig-left {
  min-width: 0;
  border-right: 1px solid var(--line);
  background: var(--ink);
}

.lp-ig-stage { padding: 8px 6px 0; }
.lp-ig-stage svg { display: block; width: 100%; height: auto; }

.lp-ig-edge {
  stroke-width: 1.4;
  stroke-dasharray: 5 7;
  opacity: .5;
}

.lp-ig-edge.up { stroke: var(--lime); }
.lp-ig-edge.new { stroke: var(--aqua); }
.lp-ig-edge.down { stroke: var(--coral); }
.lp-ig-edge.hold, .lp-ig-edge.out { stroke: var(--muted-light); }

.lp-ig-node { cursor: pointer; }
.lp-ig-node:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.lp-ig-disc {
  fill: var(--surface);
  stroke: var(--line-strong);
  stroke-width: 1.3;
}

.lp-ig-node.up .lp-ig-disc { stroke: var(--lime); }
.lp-ig-node.new .lp-ig-disc { stroke: var(--aqua); }
.lp-ig-node.down .lp-ig-disc { stroke: var(--coral); }
.lp-ig-node.focus .lp-ig-disc { fill: rgba(201,255,67,.14); stroke-width: 2.6; }

.lp-ig-code {
  fill: var(--text);
  text-anchor: middle;
  font-family: var(--font-mono);
  font-size: var(--fs-lg);
  font-weight: 800;
}

.lp-ig-weight {
  fill: var(--lime);
  text-anchor: middle;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
}

.lp-ig-act {
  fill: var(--text-2);
  text-anchor: middle;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.lp-ig-cov {
  fill: var(--muted);
  text-anchor: middle;
  font-size: var(--fs-2xs);
}

.lp-ig-node.covered .lp-ig-cov { fill: var(--lime-dark); }
/* covered 但当前 0 条生效驱动:标签退回灰色,不冒充有叙事 */
.lp-ig-node.covered .lp-ig-cov.idle { fill: var(--muted); }

.lp-ig-core { fill: #1b221c; stroke: var(--lime); stroke-width: 2; }
.lp-ig-core-img { filter: brightness(.96); }
.lp-ig-core-ring { fill: none; stroke: var(--lime); stroke-width: 2; }

.lp-ig-core-code {
  fill: var(--lime);
  text-anchor: middle;
  font-size: var(--fs-4xl);
  font-weight: 800;
}

.lp-ig-core-plate { fill: var(--surface); stroke: #414b43; }

.lp-ig-core-name {
  fill: var(--white);
  text-anchor: middle;
  font-size: var(--fs-md);
  font-weight: 700;
}

.lp-ig-core-sub {
  fill: var(--muted);
  text-anchor: middle;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
}

.lp-ig-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 10px 22px 14px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
}

.lp-ig-legend span { display: flex; align-items: center; gap: 6px; }

.lp-ig-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-light);
}

.lp-ig-legend i.up { background: var(--lime); }
.lp-ig-legend i.down { background: var(--coral); }
.lp-ig-legend i.new { background: var(--aqua); }
.lp-ig-legend-note { margin-left: auto; color: var(--muted); }

.lp-ig-timeline {
  padding: 14px 22px 18px;
  border-top: 1px solid var(--line);
}

.lp-ig-tl-head {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 62px;
  align-items: center;
  gap: 12px;
}

.lp-ig-tl-head span {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--lime);
}

.lp-ig-tl-head b {
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  color: var(--text-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-ig-replay {
  min-height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-s);
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  cursor: pointer;
}

.lp-ig-timeline input[type="range"] {
  width: 100%;
  margin: 12px 0 6px;
  accent-color: var(--lime);
  cursor: pointer;
}

.lp-ig-source {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--muted);
  text-decoration: none;
}

.lp-ig-source i { font-style: normal; margin-left: 3px; }
.lp-ig-source:hover { color: var(--lime); }

.lp-ig-rail { min-width: 0; background: var(--white); }

.lp-ig-rail-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--muted);
}

.lp-ig-rail > div:last-child { padding: 18px 20px 22px; }

.lp-ig-rail-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.lp-ig-rail-head b {
  font-family: var(--font-mono);
  font-size: var(--fs-2xl);
  font-weight: 800;
}

.lp-ig-rail-head span { font-size: var(--fs-xs); color: var(--muted); }

.lp-ig-issuer {
  margin: 6px 0 0;
  font-size: var(--fs-xs);
  line-height: var(--lh-snug);
  color: var(--muted);
}

.lp-ig-counts {
  margin: 12px 0 0;
  padding: 9px 11px;
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  line-height: var(--lh-body);
  color: var(--muted);
}

.lp-ig-rows { margin-top: 14px; }

.lp-ig-rows > div {
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.lp-ig-rows span {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--lime-text);
}

.lp-ig-rows p {
  margin: 6px 0 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}

.lp-ig-uncovered {
  margin-top: 14px;
  padding: 13px;
  border: 1px dashed var(--line);
  background: var(--surface);
}

.lp-ig-uncovered em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--muted);
}

.lp-ig-uncovered p {
  margin: 7px 0 0;
  font-size: var(--fs-xs);
  line-height: var(--lh-body);
  color: var(--muted);
}

.lp-ig-empty { margin: 0; font-size: var(--fs-sm); color: var(--muted); }

.lp-ig-open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--lime);
  padding-bottom: 2px;
}

.lp-ig-open i { font-style: normal; }

.lp-ig-holdings { border-top: 1px solid var(--line); }

.lp-ig-hold-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px 10px;
  font-size: var(--fs-sm);
}

.lp-ig-hold-head span { color: var(--muted); font-size: var(--fs-xs); }

.lp-ig-hold-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.lp-ig-hold-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 62px 96px 60px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  font-size: var(--fs-xs);
  color: var(--text);
  text-decoration: none;
}

.lp-ig-hold-row:hover { background: var(--surface-raised); }
.lp-ig-hold-row.active { background: var(--surface-raised); }

.lp-ig-hold-row > b {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.lp-ig-hold-name {
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-ig-hold-metric {
  font-family: var(--font-mono);
  text-align: right;
}

.lp-ig-hold-act {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-align: right;
}

.lp-ig-hold-act.up { color: var(--lime-text); }
.lp-ig-hold-act.down { color: var(--coral-text); }
.lp-ig-hold-act.new { color: var(--moss); }
.lp-ig-hold-act.hold, .lp-ig-hold-act.out { color: var(--muted); }

.lp-ig-hold-cov {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-align: right;
  color: var(--muted);
}

.lp-ig-exits {
  margin: 0;
  padding: 12px 24px;
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs);
  color: var(--muted);
}

.lp-ig-exits b {
  margin-right: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--coral-text);
}

.lp-ig-boundary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.lp-ig-boundary > div { padding: 15px 24px 17px; background: var(--white); }

.lp-ig-boundary b {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--lime-text);
}

.lp-ig-boundary .cannot b { color: var(--coral-text); }

.lp-ig-boundary p {
  margin: 7px 0 0;
  font-size: var(--fs-xs);
  line-height: var(--lh-body);
  color: var(--muted);
}

.lp-ig-note {
  margin: 0;
  padding: 11px 24px;
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs);
  line-height: var(--lh-body);
  color: var(--muted);
}

.lp-ig-sources {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--line);
  background: var(--surface-raised);
}

.lp-ig-sources > b {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--muted);
}

.lp-ig-sources a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.lp-ig-sources a span {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--lime-text);
}

.lp-ig-sources a em {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-size: var(--fs-sm);
}

.lp-ig-sources a small {
  display: block;
  margin-top: 4px;
  font-size: var(--fs-2xs);
  line-height: var(--lh-body);
  color: var(--muted);
}

.lp-ig-sources a:hover em { border-bottom: 1px solid var(--lime); }

.lp-ig-credit {
  margin: 10px 0 0;
  font-size: var(--fs-2xs);
  color: var(--muted);
}

.lp-ig-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: var(--head-gap);
}

.lp-ig-sec-head h2 { margin: 0; font-size: var(--fs-2xl); }

.lp-ig-sec-head p {
  margin: 0;
  max-width: 520px;
  font-size: var(--fs-xs);
  line-height: var(--lh-body);
  color: var(--muted);
}

.lp-ig-consensus, .lp-ig-house { padding: var(--sp-8) 0 0;
 }

.lp-ig-consensus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.lp-ig-con-card { padding: 15px 16px 17px; background: var(--white); }

.lp-ig-con-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.lp-ig-con-top b {
  font-family: var(--font-mono);
  font-size: var(--fs-xl);
  font-weight: 800;
}

.lp-ig-con-top span {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
}

.lp-ig-con-top span.up { color: var(--lime-text); }
.lp-ig-con-top span.down { color: var(--coral-text); }
.lp-ig-con-top span.hold { color: var(--muted); }

.lp-ig-con-issuer {
  margin: 5px 0 10px;
  font-size: var(--fs-2xs);
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-ig-con-card ul { margin: 0; padding: 0; list-style: none; }

.lp-ig-con-card li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs);
}

.lp-ig-con-card li b {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 700;
}

.lp-ig-con-card li b.up { color: var(--lime-text); }
.lp-ig-con-card li b.down { color: var(--coral-text); }
.lp-ig-con-card li b.new { color: var(--moss); }
.lp-ig-con-card li b.hold { color: var(--muted); }

.lp-ig-house-grid { border: 1px solid var(--line); background: var(--white); }

.lp-ig-house-row {
  display: grid;
  grid-template-columns: 30px 66px minmax(0, 1fr) 150px 96px;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs);
}

.lp-ig-house-row:first-child { border-top: 0; }

.lp-ig-house-rank {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--muted);
}

.lp-ig-house-code {
  font-family: var(--font-mono);
  font-size: var(--fs-md);
  font-weight: 800;
}

.lp-ig-house-bar {
  display: block;
  width: 100%;
  height: 7px;
}

.lp-ig-house-bar .track { fill: var(--line-strong); }
.lp-ig-house-bar .fill { fill: var(--lime-dark); }

.lp-ig-house-num {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  color: var(--muted);
}

.lp-ig-house-dir {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  text-align: right;
  color: var(--muted);
}

.lp-ig-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  /* 酸绿满版：原先 --ink 底压黑页 + --ink 底按钮 = 整条带连同 CTA 一起隐形
     （2026-08-18 CEO：看不出能点）。翻成全站唯一的 lime 大块，页中页尾都够响。
     底边距仍为 0：页尾场景父容器自带留白（2026-08-17 CEO：空得太多了）。 */
  margin: var(--sp-8) 0 0;
  padding: 30px 32px;
  border-radius: var(--r-l);
  background: var(--lime);
  color: var(--ink);
}

.lp-ig-cta h2 { margin: 0; font-size: var(--fs-2xl); }

.lp-ig-cta p {
  margin: 8px 0 0;
  max-width: 560px;
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: rgba(8, 10, 9, .76);
}

.lp-ig-cta-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* 带内按钮统一反转成墨底：.lp-cta 原生 --ink 底在这正好成为实心主按钮，
   .lp-cta-light 的 lime 底会融进带底，一并压成墨底。 */
.lp-ig-cta .lp-cta,
.lp-ig-cta .lp-cta-light {
  background: var(--ink);
  color: var(--lime);
  box-shadow: none;
}
.lp-ig-cta .lp-cta i,
.lp-ig-cta .lp-cta-light i { color: var(--lime); }

.lp-ig-cta .lp-ghost {
  align-self: center;
  border-color: rgba(8, 10, 9, .55);
  color: var(--ink);
}

@media (max-width: 1080px) {
  .lp-ig-hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .lp-ig-body { grid-template-columns: 1fr; }
  .lp-ig-left { border-right: 0; border-bottom: 1px solid var(--line); }
  .lp-ig-people { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lp-ig-consensus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-ig-hold-list { grid-template-columns: 1fr; }
  .stock-holder-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .lp-ig-people { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-ig-lib-head, .lp-ig-sec-head { flex-direction: column; align-items: stretch; gap: 12px; }
  .lp-ig-panel-head { flex-direction: column; gap: 14px; }
  .lp-ig-stamps { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
  .lp-ig-cta { flex-direction: column; align-items: stretch; }
  .lp-ig-cta-actions { flex-direction: column; }
  .lp-ig-house-row { grid-template-columns: 24px 58px minmax(0, 1fr); row-gap: 5px; }
  .lp-ig-house-num { grid-column: 2 / 4; }
  .lp-ig-house-dir { grid-column: 2 / 4; text-align: left; }
  .lp-ig-code { font-size: var(--fs-xl); }
  .lp-ig-act { font-size: var(--fs-md); }
  .lp-ig-cov { font-size: var(--fs-xs); }
  .lp-ig-weight { font-size: var(--fs-sm); }
  .lp-ig-hold-row { grid-template-columns: 56px minmax(0, 1fr) 84px; row-gap: 4px; }
  .lp-ig-hold-metric { grid-row: 2; grid-column: 2; text-align: left; }
  .lp-ig-hold-cov { grid-row: 2; grid-column: 3; }
  .stock-relationships { padding: var(--card-pad-lg);
 }
  .stock-holder { grid-template-columns: 40px minmax(0, 1fr) 16px; }
  .stock-holder-time { grid-column: 2 / 4; text-align: left; }
  .stock-house-row { grid-template-columns: 1fr; gap: 7px; }
  .stock-rel-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .lp-ig-person { grid-template-columns: 36px minmax(0, 1fr); gap: 8px; padding: 10px; min-height: 74px; }
  .lp-ig-face { width: 36px; height: 36px; }
  .lp-ig-person-text b { font-size: var(--fs-xs); }
  .lp-ig-person-text small { font-size: var(--fs-2xs); }
  .lp-ig-consensus-grid { grid-template-columns: 1fr; }
  .lp-ig-boundary { grid-template-columns: 1fr; }
}

/* CSP 安全的错峰延迟（style-src 'self' 不允许内联 style 属性） */
.lp-d00 { --d: 0.0s; --rd: 0.0s; }
.lp-d02 { --d: 0.02s; --rd: 0.02s; }
.lp-d04 { --d: 0.04s; --rd: 0.04s; }
.lp-d06 { --d: 0.06s; --rd: 0.06s; }
.lp-d08 { --d: 0.08s; --rd: 0.08s; }
.lp-d10 { --d: 0.1s; --rd: 0.1s; }
.lp-d12 { --d: 0.12s; --rd: 0.12s; }
.lp-d14 { --d: 0.14s; --rd: 0.14s; }
.lp-d16 { --d: 0.16s; --rd: 0.16s; }
.lp-d18 { --d: 0.18s; --rd: 0.18s; }
.lp-d20 { --d: 0.2s; --rd: 0.2s; }
.lp-d22 { --d: 0.22s; --rd: 0.22s; }
.lp-d24 { --d: 0.24s; --rd: 0.24s; }
.lp-d26 { --d: 0.26s; --rd: 0.26s; }
.lp-d28 { --d: 0.28s; --rd: 0.28s; }
.lp-d30 { --d: 0.3s; --rd: 0.3s; }
.lp-d32 { --d: 0.32s; --rd: 0.32s; }
.lp-d34 { --d: 0.34s; --rd: 0.34s; }
.lp-d36 { --d: 0.36s; --rd: 0.36s; }
.lp-d38 { --d: 0.38s; --rd: 0.38s; }
.lp-d40 { --d: 0.4s; --rd: 0.4s; }
.lp-d42 { --d: 0.42s; --rd: 0.42s; }
.lp-d44 { --d: 0.44s; --rd: 0.44s; }
.lp-d46 { --d: 0.46s; --rd: 0.46s; }
.lp-d48 { --d: 0.48s; --rd: 0.48s; }
.lp-d50 { --d: 0.5s; --rd: 0.5s; }
.lp-d52 { --d: 0.52s; --rd: 0.52s; }
.lp-d54 { --d: 0.54s; --rd: 0.54s; }
.lp-d56 { --d: 0.56s; --rd: 0.56s; }
.lp-d58 { --d: 0.58s; --rd: 0.58s; }
.lp-d60 { --d: 0.6s; --rd: 0.6s; }

.lp-mini-bar-71 { width: 71%; }

/* ── 标的详情 v4.8 重排：黑区只回答"现在是什么判断"，决策三件套单独成段 ── */

.stock-live-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(241,244,238,.14);
}

.stock-live-foot .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.stock-live-foot > p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(241,244,238,.52);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}

/* 决策三件套：全站唯一能指导动作的内容，不该是关系图旁边的小字。 */
.stock-decide {
  padding: var(--sp-8) 0 var(--sp-2);
}

.stock-decide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 30px;
}

.stock-decide-grid article {
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--white);
}

.stock-decide-grid article.is-break {
  border-color: rgba(255,112,93,.5);
  background: rgba(255,112,93,.08);
}

.stock-decide-grid span {
  display: block;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: var(--track-label);
}

.stock-decide-grid article.is-break span { color: var(--coral-text); }

.stock-decide-grid p {
  margin: 0;
  font-size: var(--fs-lg);
  line-height: var(--lh-body);
}

/* 读完"什么会推翻它"的那一秒，是最想被通知的时刻——钩子放在这里，不放在 700px 以上。 */
.stock-decide-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 20px 24px;
  border: 1px solid var(--ink);
  border-radius: var(--r-l);
  background: var(--ink);
}

.stock-decide-cta p {
  margin: 0;
  color: rgba(241,244,238,.76);
  font-size: var(--fs-md);
}

.stock-decide-cta .button-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.contribution-life {
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 700;
}

.contribution-life.stale {
  border-color: var(--line-strong);
  color: var(--muted);
}

.contribution-life.active { border-color: var(--lime-text); color: var(--lime-text); }
.contribution-life.tensioned { border-color: var(--amber); color: var(--amber-text); }
.contribution-life.crowded { border-color: var(--coral); color: var(--coral-text); }

.stock-rel-lede {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: var(--lh-body);
}

.stock-rel-lede b {
  color: var(--lime-text);
  font-family: var(--font-mono);
}

.stock-holder-empty.is-failed {
  border-color: var(--amber);
  background: rgba(246,184,74,.08);
}

/* 关系图在手机上缩到 0.54 倍会让文字变成 7px。窄屏改成同数据的竖排列表。 */
.lp-thesis-list {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-tl-item {
  display: flex;
  gap: 12px;
  width: 100%;
  padding: 13px 4px;
  border: 0;
  border-bottom: 1px solid rgba(241,244,238,.14);
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.lp-tl-item em {
  flex: none;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
}

.lp-tl-item span { display: block; min-width: 0; }
.lp-tl-item b { display: block; font-size: var(--fs-md); line-height: var(--lh-snug); }
.lp-tl-item small { display: block; margin-top: 4px; color: rgba(241,244,238,.4); font-size: var(--fs-xs); }
.lp-tl-item.bullish em { color: var(--lime); }
.lp-tl-item.bearish em { color: #ff8f82; }
.lp-tl-item.neutral em, .lp-tl-item.mixed em { color: var(--amber-text); }
.lp-tl-item.focus { background: rgba(241,244,238,.05); }

@media (max-width: 860px) {
  .stock-decide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .stock-live-top { flex-wrap: wrap; gap: 14px; }
  .stock-live-head { align-items: flex-start; gap: 20px; }
  .stock-verdict { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
  .stock-live-claim { padding-top: 24px; }
  .stock-decide { padding-top: 52px; }
  .stock-decide-cta { flex-direction: column; align-items: stretch; }
  .stock-decide-cta .button-primary { justify-content: center; }
  .lp-thesis-stage svg { display: none; }
  .lp-thesis-list { display: block; }
}

/* ── 驱动关系图 v4.9：照人物图谱那套——图讲"谁在拉扯"，右栏讲"凭什么算数" ── */

.lp-thesis-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.lp-thesis-left {
  min-width: 0;
  border-right: 1px solid rgba(241,244,238,.14);
}

.lp-thesis:not(.has-rail) .lp-thesis-body { grid-template-columns: minmax(0, 1fr); }
.lp-thesis:not(.has-rail) .lp-thesis-left { border-right: 0; }

.lp-thesis-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding: 4px 22px 16px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
}

.lp-thesis-legend i {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  vertical-align: -1px;
}

.lp-thesis-legend i.support { color: var(--lime); }
.lp-thesis-legend i.counter { color: #ff8f82; }
.lp-thesis-legend i.watch { color: var(--amber-text); }
.lp-thesis-legend-note { margin-left: auto; opacity: .7; }

.lp-tg-role {
  fill: rgba(241,244,238,.52);
  text-anchor: middle;
  font-size: var(--fs-2xs);
  font-weight: 700;
}

.lp-tg-core-plate { fill: var(--surface); stroke: #414b43; }

.lp-tg-core-name {
  fill: var(--white);
  text-anchor: middle;
  font-size: var(--fs-md);
  font-weight: 700;
}

.lp-tg-core-sub {
  fill: var(--muted);
  text-anchor: middle;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
}

/* 证据陈旧的驱动不该和刚更新的长得一样亮。 */
.lp-tg-node.is-stale { opacity: .52; }
.lp-tg-edge.is-stale { stroke-dasharray: 2 7; opacity: .42; }
.lp-tg-node.is-static { cursor: default; }

.lp-thesis-rail {
  min-width: 0;
  padding-bottom: 18px;
}

.lp-thesis-rail-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(241,244,238,.14);
  color: rgba(241,244,238,.52);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
}

.lp-thesis-rail-head {
  padding: 18px 20px 0;
}

.lp-thesis-rail-head b {
  display: block;
  color: var(--text);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
}

.lp-thesis-rail-head span {
  display: inline-block;
  margin-top: 8px;
  font-size: var(--fs-sm);
  font-weight: 800;
}

.lp-thesis-rail-head span.support { color: var(--lime); }
.lp-thesis-rail-head span.counter { color: #ff8f82; }
.lp-thesis-rail-head span.watch { color: var(--amber-text); }

.lp-thesis-life {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0 20px;
  color: rgba(241,244,238,.4);
  font-size: var(--fs-xs);
}

.lp-thesis-life em {
  padding: 3px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--lime);
  font-size: var(--fs-2xs);
  font-style: normal;
  font-weight: 700;
}

.lp-thesis-life em.stale { color: var(--muted); }
.lp-thesis-life em.tensioned { color: var(--amber-text); }
.lp-thesis-life em.crowded { color: #ff8f82; }

.lp-thesis-axes {
  display: flex;
  gap: 8px;
  margin: 14px 20px 0;
}

.lp-thesis-axes span {
  flex: 1;
  padding: 9px 4px;
  border: 1px solid rgba(241,244,238,.14);
  border-radius: var(--r-m);
  color: rgba(241,244,238,.52);
  font-size: var(--fs-2xs);
  text-align: center;
}

.lp-thesis-axes b {
  display: block;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: var(--fs-lg);
}

.lp-thesis-axes .up b { color: var(--lime); }
.lp-thesis-axes .down b { color: #ff8f82; }
.lp-thesis-axes .flat b { color: rgba(241,244,238,.52); }

.lp-thesis-rows { padding: 4px 20px 0; }

.lp-thesis-rows > div {
  padding: 15px 0;
  border-bottom: 1px solid rgba(241,244,238,.1);
}

.lp-thesis-rows > div:last-child { border-bottom: 0; }

.lp-thesis-rows span {
  display: block;
  margin-bottom: 7px;
  color: var(--lime);
  font-size: var(--fs-2xs);
  font-weight: 800;
}

.lp-thesis-rows p {
  margin: 0;
  color: rgba(241,244,238,.76);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}

.lp-thesis-empty {
  margin: 0;
  padding: 26px 20px;
  color: rgba(241,244,238,.4);
  font-size: var(--fs-md);
}

/* 首页问答里的图是"引擎在动"的证据，占位要小但不能没有。 */
.lp-answer-graph {
  margin: 16px 0 4px;
  border: 1px solid rgba(241,244,238,.14);
  border-radius: var(--r-l);
  background: var(--surface);
  overflow: hidden;
}

.lp-answer-graph .lp-thesis-stage { padding-top: 12px; }
.lp-answer-graph .lp-thesis-list { padding: 0 14px 10px; }
.lp-tl-item.is-static { cursor: default; }

@media (max-width: 980px) {
  .lp-thesis-body { grid-template-columns: minmax(0, 1fr); }
  .lp-thesis-left { border-right: 0; border-bottom: 1px solid rgba(241,244,238,.14); }
}

/* ── 动态感复原（对齐 openbit-thesis-check-prototype）──
   四层：连线流动 / 核心呼吸 / 焦点脉冲 / 未点亮的驱动压暗。
   回放时驱动逐条点亮，右栏跟着焦点走——图是在讲"判断怎么长出来的"。 */

.lp-tg-edge {
  stroke-dasharray: 5 8;
  stroke-width: 1.4;
  opacity: .62;
  animation: tgEdgeFlow 9s linear infinite;
}

.lp-tg-edge.active { opacity: 1; stroke-width: 1.8; }

/* CSS transform 会覆盖 SVG 的 transform="translate(x y)" 属性——直接给 <g> 加
   scale 会把焦点节点弹回原点（左上角）。所以缩放只作用在内层没有 translate 的组上。 */
.lp-tg-node {
  opacity: .27;
  transition: opacity .38s ease;
}

.lp-tg-scale {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .38s ease;
}

.lp-tg-node.active { opacity: 1; }
.lp-tg-node.focus .lp-tg-scale { transform: scale(1.1); }
.lp-tg-node.is-stale.active { opacity: .74; }
.lp-thesis.is-lit .lp-tg-node { opacity: 1; }
.lp-thesis.is-lit .lp-tg-node.is-stale { opacity: .68; }

.lp-tg-node.support { color: var(--lime); }
.lp-tg-node.counter { color: #ff8f82; }
.lp-tg-node.watch { color: var(--amber-text); }

.lp-tg-halo {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0;
}

.lp-tg-node.focus .lp-tg-halo {
  opacity: .48;
  animation: tgNodePulse 1.6s ease-out infinite;
}

.lp-tg-core-halo {
  fill: none;
  stroke: var(--lime);
  stroke-width: 1;
  opacity: .32;
  animation: tgCoreBreath 3s ease-in-out infinite;
}

@keyframes tgEdgeFlow { to { stroke-dashoffset: -130; } }
@keyframes tgNodePulse { from { r: 31; opacity: .56; } to { r: 45; opacity: 0; } }
@keyframes tgCoreBreath { 50% { r: 61; opacity: .12; } }

@media (prefers-reduced-motion: reduce) {
  .lp-tg-edge, .lp-tg-core-halo, .lp-tg-node.focus .lp-tg-halo { animation: none; }
  .lp-tg-node { opacity: 1; transition: none; }
}

/* ── 标的页 v5.0：按 openbit-thesis-check-prototype 的层级重排 ──
   身份条（矮）→ 工作台（图 + 监控/信源/方法）→ 结论块 → 01·02·03 → 决策三栏 → 证据账本 */

.stock-idbar {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.stock-idbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
}

.stock-idbar-name { display: flex; align-items: center; gap: 14px; }

.stock-idbar-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-m);
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: var(--fs-lg);
  font-weight: 800;
}

.stock-idbar-name h1 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-3xl);
  line-height: var(--lh-tight);
}

.stock-idbar-name h1 small { color: var(--muted); font-family: inherit; font-size: var(--fs-md); font-weight: 600; }
.stock-idbar-name p { margin: 5px 0 0; color: var(--muted); font-size: var(--fs-sm); }
.stock-idbar-right { display: flex; align-items: center; gap: 12px; }

/* 判断结论提到标题栏：它是这一页的答案，不该只活在下面那个方框里 */
.stock-idbar-verdict {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

.stock-idbar-verdict.bullish { border-color: rgba(201,255,67,.35); color: var(--lime); }
.stock-idbar-verdict.bearish { border-color: rgba(255,112,93,.5); color: var(--coral); }
.stock-idbar-verdict.mixed { border-color: rgba(246,184,74,.42); color: var(--amber); }
.stock-idbar-verdict.neutral { color: var(--muted); }

/* 换股：默认收起，展开才是输入框——手机第一屏最贵的位置不该长期挂着一个输入框 */
.stock-switch { position: relative; }

.stock-switch > summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  color: var(--muted);
  cursor: pointer;
  font-size: var(--fs-sm);
  list-style: none;
  user-select: none;
}

.stock-switch > summary::-webkit-details-marker { display: none; }
.stock-switch > summary:hover { border-color: var(--text); color: var(--text); }
.stock-switch > summary:focus-visible { outline: 2px solid var(--lime-dark); outline-offset: 2px; }
.stock-switch > summary b { color: var(--text); font-family: var(--font-mono); font-size: var(--fs-md); }
.stock-switch[open] > summary { border-color: var(--text); color: var(--text); }

.stock-switch-pop {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  right: 0;
  width: 268px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--surface-raised);
  box-shadow: 0 18px 44px rgba(0,0,0,.55);
}

.stock-switch-input {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: var(--fs-md);
}

.stock-switch-input:focus { outline: none; border-color: var(--lime-dark); }
.stock-switch-input::placeholder { color: var(--muted-light); font-family: var(--font-sans); }
.stock-switch-label { margin: 14px 0 8px; color: var(--muted-light); font-size: var(--fs-xs); letter-spacing: var(--track-label); }
.stock-switch-list { display: flex; flex-wrap: wrap; gap: 6px; }

.stock-switch-list a {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  text-decoration: none;
}

.stock-switch-list a:hover { border-color: var(--lime-dark); color: var(--lime); }
.stock-switch-foot { margin: 12px 0 0; color: var(--muted-light); font-size: var(--fs-xs); line-height: var(--lh-body); }

/* 心跳条：这一页唯一的"现在"。转化点定在结论后面那个日期上，日期得先看得见。 */
.stock-pulse { margin-top: 26px; max-width: 520px; }
.stock-pulse-head { margin: 0; color: var(--muted); font-size: var(--fs-md); }
.stock-pulse-head b { color: var(--text); font-weight: 700; }

.stock-pulse-track {
  position: relative;
  height: 3px;
  margin: 13px 0 9px;
  border-radius: 999px;
  background: var(--line);
}

/* 没有改写记录时轨道压暗，不留一条看起来像"有刻度但没画出来"的实线（禁 gradient，纯色处理） */
.stock-pulse-track.is-quiet { height: 1px; margin-top: 15px; background: var(--muted-light); opacity: .45; }

.stock-pulse-tick {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: var(--aqua);
}

/* 最后一个点是"最近一次"，给它一圈光晕；它就是订阅那句话的依据 */
.stock-pulse-tick:last-child { background: var(--lime); box-shadow: 0 0 0 4px rgba(201,255,67,.14); }

.stock-pulse-foot {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: var(--muted-light);
  font-size: var(--fs-xs);
}

.stock-bench { padding: var(--sp-7) 0 var(--sp-2);
 background: var(--ink); }

.stock-bench-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 24px;
  padding-bottom: 22px;
}

.stock-bench-head .eyebrow { color: var(--lime-dark); }
.stock-bench-head h2 { margin: 0; color: var(--text); font-size: var(--fs-2xl); }

.stock-bench-meta {
  margin: 0;
  color: rgba(241,244,238,.4);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
}

/* 右栏三 tab */
.lp-thesis-tabs { display: grid; grid-template-columns: repeat(3, 1fr); }

.lp-thesis-tabs button {
  padding: 13px 6px;
  border: 0;
  border-bottom: 1px solid rgba(241,244,238,.14);
  background: none;
  color: rgba(241,244,238,.52);
  font-weight: 800; font-size: var(--fs-sm); line-height: 1;
  cursor: pointer;
  transition: color .18s, border-color .18s;
}

.lp-thesis-tabs button.active { border-bottom-color: var(--lime); color: var(--lime); }
.lp-thesis-tabs button:hover { color: var(--text); }
.lp-thesis-pane { display: none; }
.lp-thesis-pane.active { display: block; }

.lp-thesis-mon { padding: 18px 20px 20px; }

.lp-thesis-mon-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(241,244,238,.4);
  font-size: var(--fs-xs);
}

.lp-thesis-mon-head b { color: var(--lime); font-family: var(--font-mono); }

.lp-thesis-mon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.lp-thesis-mon-grid > div {
  padding: 10px 6px;
  border: 1px solid rgba(241,244,238,.14);
  border-radius: var(--r-m);
  text-align: center;
}

.lp-thesis-mon-grid span { display: block; color: rgba(241,244,238,.4); font-size: var(--fs-2xs); }

.lp-thesis-mon-grid b {
  display: block;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: var(--fs-xl);
}

.lp-thesis-mon-grid b.up, .lp-thesis-mon-grid b.bullish { color: var(--lime); }
.lp-thesis-mon-grid b.down, .lp-thesis-mon-grid b.bearish { color: #ff8f82; }
.lp-thesis-mon-grid b.mixed { color: var(--amber-text); }
.lp-thesis-mon-grid b.neutral { color: var(--text); }

.lp-thesis-mon-rules { margin-top: 18px; }

.lp-thesis-mon-rules-head {
  display: flex;
  justify-content: space-between;
  color: rgba(241,244,238,.4);
  font-size: var(--fs-xs);
}

.lp-thesis-mon-rules-head b { color: var(--lime); }
.lp-thesis-mon-rules ul { margin: 9px 0 0; padding: 0; list-style: none; }

.lp-thesis-mon-rules li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(241,244,238,.1);
  color: rgba(241,244,238,.76);
  font-size: var(--fs-sm);
}

.lp-thesis-mon-rules li i {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-style: normal;
}

.lp-thesis-mail {
  margin-top: 18px;
  padding: 13px 14px 15px;
  border: 1px solid rgba(241,244,238,.14);
  border-radius: var(--r-l);
  background: rgba(241,244,238,.05);
}

.lp-thesis-mail-head {
  display: flex;
  justify-content: space-between;
  color: rgba(241,244,238,.4);
  font-size: var(--fs-2xs);
}

.lp-thesis-mail-head b { color: var(--lime); }
.lp-thesis-mail-subject { margin: 9px 0 0; color: var(--text); font-size: var(--fs-md); font-weight: 700; line-height: var(--lh-snug); }
.lp-thesis-mail-body { margin: 8px 0 0; color: rgba(241,244,238,.52); font-size: var(--fs-xs); line-height: var(--lh-body); }

.lp-thesis-mon-cta {
  width: 100%;
  margin-top: 16px;
  padding: 13px 12px;
  border: 0;
  border-radius: var(--r-m);
  background: var(--lime);
  color: var(--ink);
  font-weight: 800; font-size: var(--fs-md); line-height: 1;
  cursor: pointer;
}

.lp-thesis-mon-cta:hover { background: var(--lime-hover); }

/* rail 里的传播入口：注册钩子(跟踪)是主按钮，传播钩子跟在正下方，不抢主次但保证第一屏就有 */
.lp-thesis-mon-share {
  display: block;
  margin: 12px auto 0;
  color: rgba(241,244,238,.76);
  font-size: var(--fs-sm);
}

.lp-thesis-mon-note { margin: 10px 0 0; color: rgba(241,244,238,.4); font-size: var(--fs-2xs); text-align: center; }
.lp-thesis-method { padding: 6px 20px 20px; }

.lp-thesis-method > div {
  padding: 15px 0;
  border-bottom: 1px solid rgba(241,244,238,.1);
}

.lp-thesis-method > div:last-child { border-bottom: 0; }
.lp-thesis-method span { display: block; margin-bottom: 7px; color: var(--lime); font-size: var(--fs-xs); font-weight: 800; }
.lp-thesis-method p { margin: 0; color: rgba(241,244,238,.76); font-size: var(--fs-sm); line-height: var(--lh-body); }

/* 结论块 */
.stock-verdict-block { padding: var(--sp-2) 0 var(--sp-7);
 background: var(--ink); }

.stock-verdict-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: var(--col-gap);
  align-items: start;
  padding-top: 34px;
  border-top: 1px solid rgba(241,244,238,.14);
}

.stock-verdict-grid .eyebrow { color: var(--lime-dark); }

.stock-verdict-grid h2 {
  margin: 10px 0 0;
  color: var(--text);
  font-size: var(--fs-hero);
  line-height: var(--lh-heading);
}

.stock-verdict-why { margin: 16px 0 0; color: rgba(241,244,238,.64); font-size: var(--fs-md); line-height: var(--lh-loose); }
.stock-verdict-grid aside { padding: 18px 20px 20px; border: 1px solid rgba(241,244,238,.26); border-radius: var(--r-l); }
.stock-verdict-grid aside > span { display: block; color: rgba(241,244,238,.4); font-size: var(--fs-xs); }

.stock-verdict-grid aside b {
  display: block;
  margin: 8px 0 0;
  font-size: var(--fs-3xl);
  font-weight: 800;
}

.stock-verdict-grid aside b.bullish { color: var(--lime); }
.stock-verdict-grid aside b.bearish { color: #ff8f82; }
.stock-verdict-grid aside b.mixed { color: var(--amber-text); }
.stock-verdict-grid aside b.neutral { color: var(--text); }

.stock-verdict-grid aside > p {
  margin: 8px 0 16px;
  color: rgba(241,244,238,.52);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
}

.stock-verdict-grid aside .button { width: 100%; margin-bottom: 8px; }

/* 01 / 02 / 03 */
.stock-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  padding: var(--sp-8) 0 0;
}

.stock-three-card {
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  background: var(--white);
}

.stock-three-card.changed { border-top-color: var(--lime-text); }
.stock-three-card.counter { border-top-color: var(--coral); }
.stock-three-card.next { border-top-color: var(--amber); }

.stock-three-no {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: var(--track-label);
}

.stock-three-card h3 { margin: 0; font-size: var(--fs-xl); line-height: var(--lh-snug); }
.stock-three-card p { margin: 11px 0 0; color: var(--muted); font-size: var(--fs-md); line-height: var(--lh-body); }

/* 能跳到账本的卡才做成可点：不能跳的别装成按钮 */
.stock-three-card.is-linked { cursor: pointer; transition: border-color .16s ease, background .16s ease; }
.stock-three-card.is-linked:hover { background: var(--surface-raised); }
.stock-three-card.is-linked:focus-visible { outline: 2px solid var(--lime-dark); outline-offset: 2px; }

.stock-three-jump {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted-light);
  font-size: var(--fs-xs);
}

.stock-three-card.is-linked:hover .stock-three-jump { color: var(--lime); }

/* 免费门：这一页唯一不要开户的出口。左边是留邮箱，右边是那封信的真实内容。 */
.stock-subscribe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: 28px;
  align-items: start;
  margin-top: var(--sp-8);
}

.stock-subscribe .community-subscribe { margin: 0; }
.stock-subscribe .eyebrow { color: var(--lime); }
.stock-subscribe .community-form { flex-direction: row; flex-wrap: wrap; }
.stock-subscribe .community-input { flex: 1 1 200px; }
.stock-subscribe .community-form .button { flex: 0 0 auto; }

.stock-sample {
  padding: 18px 20px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--surface);
}

.stock-sample-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-light);
  font-size: var(--fs-xs);
  letter-spacing: var(--track-label);
}

.stock-sample-head b { color: var(--muted); font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0; }
.stock-sample-label { margin: 16px 0 8px; color: var(--muted); font-size: var(--fs-xs); }

.stock-sample-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 5px 0;
}

.stock-sample-row b { color: var(--text); font-family: var(--font-mono); font-size: var(--fs-sm); }
.stock-sample-row span { flex: 1; overflow: hidden; color: var(--muted); font-size: var(--fs-sm); text-overflow: ellipsis; white-space: nowrap; }
.stock-sample-row em { font-family: var(--font-mono); font-size: var(--fs-sm); font-style: normal; font-variant-numeric: tabular-nums; }
.stock-sample-row em.in { color: var(--lime-text); }
.stock-sample-row em.out { color: var(--coral); }
.stock-sample-more { margin: 14px 0 0; color: var(--muted-light); font-size: var(--fs-xs); }

.stock-sample-foot {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}

.stock-sample-foot b { color: var(--text); }

/* 从卡片跳过来的那几行要认得出：高亮是给"我刚点的是这个"一个回执 */
.stock-ledger-row.is-hit { background: var(--surface-raised); box-shadow: inset 2px 0 0 var(--lime); }
.stock-ledger-mode { display: inline-block; margin-left: 10px; vertical-align: -1px; }

@media (max-width: 860px) {
  .stock-subscribe { grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
  .stock-switch-pop { width: min(268px, calc(100vw - 40px)); }
  .stock-pulse { max-width: none; }
}
.stock-decide-grid article.is-now { border-color: var(--ink); }

/* 证据账本 */
.stock-ledger { padding: var(--sp-8) 0 0;
 }
.stock-ledger-table { margin-top: 26px; border-top: 1px solid var(--line); }

.stock-ledger-head, .stock-ledger-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 2.1fr) minmax(0, 1.2fr) 64px;
  gap: 18px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.stock-ledger-head {
  color: var(--muted);
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: var(--track-label);
}

.stock-ledger-date { color: var(--muted); font-family: var(--font-mono); font-size: var(--fs-sm); }
.stock-ledger-fact { font-size: var(--fs-md); line-height: var(--lh-body); }
.stock-ledger-driver { color: var(--muted); font-size: var(--fs-sm); line-height: var(--lh-body); }

.stock-ledger-act {
  justify-self: end;
  padding: 3px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 700;
}

.stock-ledger-act.support { color: var(--lime-text); }
.stock-ledger-act.counter { color: var(--coral-text); }
.stock-ledger-act.watch { color: var(--amber-text); }

@media (max-width: 980px) {
  .stock-verdict-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .stock-three { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .stock-idbar-inner { align-items: flex-start; }
  .stock-idbar-right { width: 100%; justify-content: space-between; }
  .stock-ledger-head { display: none; }
  .stock-ledger-row { grid-template-columns: 1fr auto; gap: 6px 12px; }
  .stock-ledger-driver { grid-column: 1 / -1; }
}

/* 引擎给的 regime 是一整句话（常有 60+ 字），当 47px 海报标题用会变成一堵墙。
   longform 变体：正常阅读字号、限行宽；右侧链接不参与压缩，免得被挤成四行。 */
.section-heading.is-longform h2 {
  max-width: 62ch;
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: var(--lh-body);
}

.section-heading .text-link {
  flex: none;
  white-space: nowrap;
}

/* ── 工具架 + 持仓体检空状态（沿用暗色 token，不新增颜色） ──
   独立的 /tools 页 2026-08-17 并进 /community，页头那几条（.tools-page /
   .tools-head / .tools-lede / .tools-stats / .tools-top）随之删掉；
   下面这些卡片与分组样式仍在用——社区页的军火库那一段复用同一套。 */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--grid-gap);
  margin-top: 40px;
}

.tools-card {
  display: block;
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease;
}

.tools-card.is-live:hover { border-color: var(--lime); background: var(--surface-raised); }

.tools-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tools-card-head h2 { margin: 0; font-size: var(--fs-xl); }

.tools-status {
  flex: none;
  padding: 3px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: var(--fs-2xs);
  font-weight: 700;
}

.tools-status.live { color: var(--lime); }
.tools-status.soon { color: var(--amber); }
.tools-status.planned { color: var(--muted); }

.tools-card-lede { margin: 14px 0 0; font-size: var(--fs-lg); line-height: var(--lh-body); }

.tools-card-go {
  display: inline-flex;
  gap: 7px;
  margin-top: 18px;
  color: var(--lime);
  font-size: var(--fs-md);
  font-weight: 800;
}

.tools-foot { margin-top: 36px; color: var(--muted); font-size: var(--fs-md); }

/* 空状态先给回报再要输入：右边直接摆一张「体检完长这样」 */
.checkup-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: var(--col-gap);
  align-items: center;
}

.checkup-intro h1 { margin: 0; line-height: var(--lh-heading); }
.checkup-intro > p { margin: 18px 0 0; max-width: 52ch; color: var(--muted); font-size: var(--fs-lg); line-height: var(--lh-loose); }
.checkup-intro .eyebrow a { color: inherit; }
.checkup-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.checkup-preview-label { margin: 0 0 12px; color: var(--muted); font-size: var(--fs-xs); font-weight: 700; }

.checkup-preview-card {
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--surface-raised);
}

.checkup-preview-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--muted);
  font-size: var(--fs-xs);
}

.checkup-preview-top b { color: var(--text); font-size: var(--fs-md); }

.checkup-preview-big {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 14px;
  color: var(--lime);
  font-family: var(--font-mono);
}

.checkup-preview-big b { font-size: var(--fs-mega); font-weight: 800; line-height: var(--lh-display); }
.checkup-preview-big em { font-size: var(--fs-2xl); font-style: normal; font-weight: 800; }
.checkup-preview-line { margin: 10px 0 0; font-size: var(--fs-md); }

.checkup-preview-story {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-left: 2px solid var(--lime);
  background: var(--surface);
  font-size: var(--fs-md);
}

.checkup-preview-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-xs);
}

@media (max-width: 900px) {
  .checkup-hero { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}

/* 首页回答卡里这张图只有 520px 宽（缩到 0.68 倍），13px 的标签落地只剩 8.9px。
   放大卡内字号把落地尺寸拉回 12px 以上——图是钩子，读不了就只是装饰。 */
.lp-answer-graph .lp-tg-label { font-size: var(--fs-xl); }
.lp-answer-graph .lp-tg-sub { font-size: var(--fs-lg); }
.lp-answer-graph .lp-tg-tag { font-size: var(--fs-xl); }
.lp-answer-graph .lp-tg-role { font-size: var(--fs-md); }
.lp-answer-graph .lp-tg-core-code { font-size: var(--fs-2xl); }
.lp-answer-graph .lp-tg-core-state { font-size: var(--fs-lg); }
.lp-answer-graph .lp-tg-core-name { font-size: var(--fs-xl); }
.lp-answer-graph .lp-tg-core-sub { font-size: var(--fs-md); }
.lp-answer-graph .lp-thesis-legend { font-size: var(--fs-sm); }

.stock-bare-note {
  display: block;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-size: var(--fs-xs);
  line-height: var(--lh-body);
}

/* —— 问答结果卡（探索页内联 + 个股页回答卡） —— */
.ask-result { margin: 18px auto 0; }
.ask-card { border: 1px solid var(--line); background: var(--surface-raised); padding: var(--card-pad);
 }
.ask-card-q { margin: 0 0 12px; color: var(--muted); font-size: var(--fs-sm); }
.ask-card-head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.ask-card-head h3 { margin: 0; font-size: var(--fs-2xl); color: var(--text); }
.ask-card-foot { margin: 14px 0 0; color: var(--muted-light); font-size: var(--fs-xs); }
.ask-card-empty { margin: 0; color: var(--muted); font-size: var(--fs-md); }
.ask-loading { padding: 10px 0; }
.ask-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.ask-tab { padding: 7px 11px; border: 1px solid var(--line); background: none; color: var(--muted); font-size: var(--fs-xs); cursor: pointer; }
.ask-tab.is-active { border-color: var(--lime); color: var(--lime-text); }
.ask-rows { display: flex; flex-direction: column; }
.ask-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-top: 1px solid var(--line); }
.ask-row:first-child { border-top: 0; }
.ask-row-main { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.ask-row-main b { color: var(--text); font-size: var(--fs-md); }
.ask-row-main span { color: var(--muted); font-size: var(--fs-sm); }
.ask-row-side { text-align: right; color: var(--muted-light); font-size: var(--fs-xs); min-width: 0; }
.ask-row-side small { display: block; }
.ask-ticker { display: inline-block; margin: 0 3px 3px 0; padding: 3px 8px; border: 1px solid rgba(241,244,238,.26); color: var(--text); font-size: var(--fs-sm); font-weight: 600; }
.ask-ticker:hover { border-color: var(--lime); color: var(--lime-text); }
.ask-answer { margin: 0; color: var(--text); font-size: var(--fs-lg); line-height: var(--lh-body); }
.ask-related { margin-top: 12px; }
.ask-related span { margin-right: 8px; color: var(--muted-light); font-size: var(--fs-xs); }
.ask-more { display: inline-block; margin-top: 12px; color: var(--lime-text); font-size: var(--fs-sm); }
.ask-event-summary { margin: 0 0 12px; color: var(--muted); font-size: var(--fs-md); line-height: var(--lh-body); }
.ask-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ask-compare-side { border: 1px solid var(--line); padding: 14px 16px; }
.ask-compare-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.ask-compare-head small { color: var(--muted-light); font-size: var(--fs-xs); }
.ask-compare-side p { margin: 0 0 8px; color: var(--muted); font-size: var(--fs-sm); }
.ask-compare-unique { display: block; color: var(--muted-light); font-size: var(--fs-xs); }
.ask-compare-shared { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 10px; }
.ask-compare-shared span { display: block; margin-bottom: 6px; color: var(--muted-light); font-size: var(--fs-xs); }
.ask-compare-shared small { display: block; color: var(--muted); font-size: var(--fs-sm); }
.ask-examples { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.ask-examples a { padding: 8px 11px; border: 1px solid rgba(241,244,238,.14); color: rgba(241,244,238,.64); font-size: var(--fs-xs); }
.ask-examples a:hover { border-color: var(--lime); color: var(--lime-text); }
.stock-answer { margin: 20px auto 0; border: 1px solid var(--lime-dark); background: var(--surface-raised); padding: 20px 24px; }
.stock-answer-q { margin: 0 0 10px; color: var(--muted); font-size: var(--fs-sm); }
.stock-answer-a span { display: block; margin-bottom: 6px; color: var(--lime-text); font-size: var(--fs-xs); letter-spacing: var(--track-label); }
.stock-answer-a p { margin: 0; color: var(--text); font-size: var(--fs-lg); line-height: var(--lh-body); }
.stock-answer > small { display: block; margin-top: 12px; color: var(--muted-light); font-size: var(--fs-xs); }
@media (max-width: 720px) {
  .ask-compare { grid-template-columns: 1fr; }
  .ask-row { flex-direction: column; gap: 4px; }
  .ask-row-side { text-align: left; }
}
.ask-section-label { margin: 16px 0 4px; color: var(--muted-light); font-size: var(--fs-xs); letter-spacing: .04em; }
.ask-section-label:first-of-type { margin-top: 4px; }

/* ==========================================================================
   信号工具页（老站 OB 系列雷达移植）
   ========================================================================== */

.signal-page { padding: var(--band-pad) 0;
 }
.signal-head { max-width: 640px; }
.signal-head h1 { margin: 0; font-size: var(--fs-hero); line-height: var(--lh-heading); }
.signal-head .eyebrow a { color: inherit; text-decoration: none; }
.signal-head .eyebrow a:hover { color: var(--lime); }
.signal-lede { margin: 16px 0 0; color: var(--muted); font-size: var(--fs-lg); line-height: var(--lh-loose); }

.signal-banner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 36px;
  padding: 18px 20px;
  border: 1px solid var(--amber);
  border-radius: var(--r-l);
  background: var(--surface);
}
.signal-banner strong { color: var(--amber); font-size: var(--fs-md); }
.signal-banner span { color: var(--muted); font-size: var(--fs-sm); line-height: var(--lh-body); }

.signal-sample { margin-top: 28px; }
.signal-sample-label { margin: 0 0 12px; color: var(--muted-light); font-size: var(--fs-xs); letter-spacing: .04em; }

.signal-card {
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--surface);
}
.signal-card + .signal-card { margin-top: 12px; }
.signal-card.bearish { border-color: rgba(255, 112, 93, 0.35); }

.signal-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.signal-ticker { font-size: var(--fs-lg); font-weight: 800; }
.signal-type,
.signal-dir,
.signal-strength,
.signal-time,
.signal-sample-badge {
  padding: 2px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--fs-2xs);
  font-weight: 700;
  color: var(--muted);
}
.signal-type.whale { color: var(--lime); border-color: currentColor; }
.signal-type.spike { color: var(--coral); border-color: currentColor; }
.signal-type.new { color: var(--aqua); border-color: currentColor; }
.signal-dir.up { color: var(--lime); }
.signal-dir.down { color: var(--coral); }
.signal-sample-badge { color: var(--amber); border-color: currentColor; }
.signal-time { border-color: transparent; }

.signal-impact { margin: 14px 0 0; font-size: var(--fs-md); line-height: var(--lh-body); }
.signal-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  color: var(--muted);
  font-size: var(--fs-sm);
}
.signal-tip { color: var(--muted-light); }

.signal-feed { margin-top: 32px; }
.signal-foot { margin-top: 36px; color: var(--muted); font-size: var(--fs-md); }
.signal-foot .lp-ghost { margin-left: 10px; }

.tools-status.maintenance { color: var(--amber); }

/* ==========================================================================
   雷达页共用（OB/06 主力资金雷达 · OB/07 市场雷达）
   ========================================================================== */

.radar-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: var(--col-gap);
  align-items: end;
}
.radar-lede { margin: 14px 0 0; max-width: 60ch; color: var(--muted); font-size: var(--fs-lg); line-height: var(--lh-body); }
.radar-lede b { color: var(--text); font-weight: 600; }

.radar-stats { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; }
.radar-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.radar-stat:last-child { border-bottom: none; }
.radar-stat.anchor { color: var(--aqua); font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--track-label); }
.radar-stat.anchor i { width: 6px; height: 6px; border-radius: 999px; background: var(--aqua); }
.radar-stat .l { flex: none; color: var(--muted-light); font-size: var(--fs-2xs); letter-spacing: var(--track-label); }
.radar-stat .v { font-size: var(--fs-sm); text-align: right; }
.radar-stat .v.up { color: var(--lime-text); }

.radar-section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: var(--sp-7);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.radar-section-head h2 { margin: 0; font-size: var(--fs-2xl); }
.radar-section-head > span { color: var(--muted); font-size: var(--fs-sm); }

.radar-tabs { display: flex; flex-wrap: wrap; margin-top: 20px; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; background: var(--surface); }
.radar-tab {
  flex: 1;
  min-width: 120px;
  padding: 13px 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-md);
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: color .15s, background .15s;
}
.radar-tab:last-child { border-right: none; }
.radar-tab:hover { color: var(--text); }
.radar-tab.active { color: var(--lime-text); background: var(--surface-raised); }
.radar-tab .cnt { margin-left: 6px; color: var(--muted-light); font-size: var(--fs-2xs); }
.radar-tab.active .cnt { color: var(--lime-text); }
.radar-tab-desc { margin: 12px 0 0; color: var(--muted); font-size: var(--fs-sm); line-height: var(--lh-body); }
.radar-tab-desc::before { content: "▸ "; color: var(--lime); }

.radar-error { margin-top: 14px; }
.radar-loading { padding: 40px 20px; color: var(--muted-light); font-size: var(--fs-sm); text-align: center; letter-spacing: var(--track-label); }
.ta-r { text-align: right; }

.radar-board { margin-top: 14px; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; }
.radar-bhead,
.radar-brow {
  display: grid;
  grid-template-columns: 36px 180px 1fr 150px 130px 110px;
  gap: 18px;
  align-items: center;
  padding: 12px 20px;
}
.radar-bhead {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted-light);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: var(--track-wide);
}
.radar-brow { border-bottom: 1px solid var(--line); }
.radar-brow:last-child { border-bottom: none; }
.radar-brow:hover { background: var(--surface); }
.radar-rank { color: var(--muted-light); font-size: var(--fs-xs); }
.radar-tk { min-width: 0; }
.radar-tk .tk { font-size: var(--fs-md); font-weight: 800; letter-spacing: .04em; }
.radar-tk .nm { overflow: hidden; margin-top: 1px; color: var(--muted); font-size: var(--fs-xs); white-space: nowrap; text-overflow: ellipsis; }
.radar-label { min-width: 0; color: var(--muted); font-size: var(--fs-sm); line-height: var(--lh-body); }
.radar-flow, .radar-price { text-align: right; }
.radar-flow .amt { font-size: var(--fs-md); font-weight: 700; }
.radar-flow .amt.up, .radar-price .chg.up { color: var(--lime-text); }
.radar-flow .amt.down, .radar-price .chg.down { color: var(--coral); }
.radar-flow .itn { margin-top: 1px; color: var(--muted-light); font-size: var(--fs-2xs); }
.radar-price .px { font-size: var(--fs-sm); }
.radar-price .chg { margin-top: 1px; font-size: var(--fs-xs); }
.radar-spark { display: flex; justify-content: flex-end; }
.radar-spark svg { display: block; }

.sp-up { fill: var(--lime); opacity: .85; }
.sp-down { fill: var(--coral); opacity: .85; }
.sp-mid { stroke: var(--line); stroke-width: 1; }
.sp-line { stroke: var(--lime); stroke-width: 1.4; }
.sp-line-down { stroke: var(--coral); stroke-width: 1.4; }

.radar-methodology {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin-top: 48px;
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--surface);
}
.radar-methodology .m-row { display: flex; gap: 14px; align-items: baseline; font-size: var(--fs-sm); line-height: var(--lh-body); }
.radar-methodology .m-label { flex: none; min-width: 70px; color: var(--aqua); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: var(--track-label); }
.radar-methodology .m-text { color: var(--muted); }
.radar-methodology .m-text b { color: var(--text); font-weight: 600; }

/* —— OB/07 市场体温 —— */
.radar-temp { display: flex; flex-wrap: wrap; margin-top: 20px; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; background: var(--surface); }
.temp-cell { flex: 1; min-width: 150px; padding: 18px 20px; border-right: 1px solid var(--line); }
.temp-cell:last-child { border-right: none; }
.temp-cell .tl { margin-bottom: 8px; color: var(--muted-light); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: var(--track-label); }
.temp-cell .tv { font-size: var(--fs-2xl); font-weight: 300; letter-spacing: var(--track-tight); line-height: var(--lh-tight); }
.temp-cell .tv .u { color: var(--lime-text); }
.temp-cell .tv .d { color: var(--coral); }
.temp-cell .tv .f { color: var(--muted); font-size: var(--fs-lg); }
.temp-cell .ts { margin-top: 4px; color: var(--muted); font-size: var(--fs-xs); }

.radar-extreme {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-top: 14px;
  padding: 11px 16px;
  border: 1px dashed var(--lime-dark);
  border-radius: var(--r-l);
  color: var(--lime-text);
  font-size: var(--fs-sm);
}
.radar-extreme.down { border-color: var(--coral); color: var(--coral); }
.radar-extreme .eb-k { flex: none; padding: 2px 8px; border: 1px solid currentColor; border-radius: 999px; font-size: var(--fs-2xs); font-weight: 700; letter-spacing: var(--track-label); }

.radar-panel-title { margin: 0 0 14px; color: var(--muted-light); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: var(--track-label); }
.radar-dist, .radar-tiers { margin-top: 18px; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--r-l); background: var(--surface); }
.dist-row { display: grid; grid-template-columns: 1fr 74px 1fr; gap: 12px; align-items: center; margin-bottom: 8px; }
.dist-row .lab { color: var(--muted); font-size: var(--fs-xs); text-align: center; }
.dist-bar { display: flex; height: 16px; }
.dist-bar.left { justify-content: flex-end; }
.dist-bar .bar { height: 100%; }
.dist-bar.left .bar { background: var(--coral); opacity: .8; }
.dist-bar.right .bar { background: var(--lime); opacity: .8; }
.dist-bar .cnt { padding: 0 8px; color: var(--muted); font-size: var(--fs-xs); line-height: 16px; }
.radar-dist-flat { display: flex; justify-content: center; gap: 10px; margin: 8px 0 0; color: var(--muted-light); font-size: var(--fs-xs); }

.tier-row { display: grid; grid-template-columns: 130px 1fr 150px; gap: 16px; align-items: center; margin-bottom: 12px; }
.tier-row:last-child { margin-bottom: 0; }
.tier-row .lab { color: var(--muted); font-size: var(--fs-xs); }
.tier-bar { display: flex; height: 14px; background: var(--ink-2); border-radius: var(--r-s); overflow: hidden; }
.tier-bar .adv { height: 100%; background: var(--lime); opacity: .8; }
.tier-bar .dec { height: 100%; background: var(--coral); opacity: .8; }
.tier-row .nums { font-size: var(--fs-xs); text-align: right; color: var(--muted); }
.tier-row .nums .u { color: var(--lime-text); }
.tier-row .nums .d { color: var(--coral); }

.radar-hist { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap);
 margin-top: 18px; }
.hist-card { padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--r-l); background: var(--surface); }
.hist-body svg { display: block; width: 100%; }
.hist-body.accum { padding: 20px 0; color: var(--muted-light); font-size: var(--fs-xs); text-align: center; }

/* —— OB/07 板块轮动 —— */
.radar-pills { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 14px; }
.radar-pills .pl { margin-right: 4px; color: var(--muted-light); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: var(--track-label); }
.radar-pill {
  padding: 5px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: var(--fs-xs);
  cursor: pointer;
  user-select: none;
  transition: color .15s, border-color .15s;
}
.radar-pill:hover { color: var(--text); }
.radar-pill.active { color: var(--lime-text); border-color: var(--lime-dark); }

.radar-rot { margin-top: 14px; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; }
.radar-rhead,
.radar-rrow {
  display: grid;
  grid-template-columns: 200px 72px 72px 72px 72px 72px 100px 140px 1fr;
  gap: 14px;
  align-items: center;
  padding: 11px 18px;
}
.radar-rhead {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted-light);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: var(--track-label);
}
.radar-rhead span { text-align: right; }
.radar-rhead span:first-child { text-align: left; }
.radar-rrow { border-bottom: 1px solid var(--line); cursor: pointer; transition: background .15s; }
.radar-rrow:last-child { border-bottom: none; }
.radar-rrow:hover { background: var(--surface); }
.radar-rname { display: flex; gap: 8px; align-items: baseline; min-width: 0; }
.radar-rname .nm { overflow: hidden; font-size: var(--fs-md); font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.radar-rname .quad { flex: none; padding: 1px 6px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: var(--fs-2xs); letter-spacing: .04em; white-space: nowrap; }
.radar-rname .quad.q1 { color: var(--lime-text); border-color: var(--lime-dark); }
.radar-rname .quad.q2 { color: var(--aqua); border-color: var(--aqua); }
.radar-rname .quad.q3 { color: var(--amber); border-color: var(--amber); }
.radar-rname .quad.q4 { color: var(--coral); border-color: var(--coral); }
.radar-chg { padding: 3px 6px; font-size: var(--fs-sm); text-align: right; border-radius: var(--r-s); }
.radar-chg.na, .radar-leader .na { color: var(--muted-light); }
.hm-u1 { background: rgba(201, 255, 67, 0.06); }
.hm-u2 { background: rgba(201, 255, 67, 0.12); }
.hm-u3 { background: rgba(201, 255, 67, 0.20); color: var(--ink); }
.hm-u4 { background: rgba(201, 255, 67, 0.30); color: var(--ink); }
.hm-d1 { background: rgba(255, 112, 93, 0.07); }
.hm-d2 { background: rgba(255, 112, 93, 0.13); }
.hm-d3 { background: rgba(255, 112, 93, 0.20); }
.hm-d4 { background: rgba(255, 112, 93, 0.28); }
.radar-amt { color: var(--muted); font-size: var(--fs-xs); text-align: right; }
.radar-leader { overflow: hidden; font-size: var(--fs-xs); text-align: right; white-space: nowrap; text-overflow: ellipsis; }
.radar-leader .lt { font-weight: 600; }
.radar-leader .lc.up { color: var(--lime-text); }
.radar-leader .lc.down { color: var(--coral); }
.radar-rspark { display: flex; justify-content: flex-end; }

.radar-drill { display: none; grid-column: 1 / -1; padding: 14px 4px 6px; border-top: 1px dotted var(--line); }
.radar-rrow.open .radar-drill { display: block; cursor: default; }
.radar-drill .dl { margin: 0 0 8px; color: var(--muted-light); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: var(--track-label); }
.radar-dtab { width: 100%; border-collapse: collapse; }
.radar-dtab th { padding: 5px 8px; border-bottom: 1px solid var(--line); color: var(--muted-light); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: var(--track-label); text-align: right; }
.radar-dtab th:first-child { text-align: left; }
.radar-dtab td { padding: 5px 8px; border-bottom: 1px solid var(--line); font-size: var(--fs-xs); text-align: right; }
.radar-dtab td:first-child { text-align: left; }
.radar-dtab td .mn { margin-left: 6px; color: var(--muted); font-size: var(--fs-xs); }
.radar-dtab .up { color: var(--lime-text); }
.radar-dtab .down { color: var(--coral); }

@media (max-width: 960px) {
  .radar-hero { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .radar-methodology { grid-template-columns: 1fr; padding: 20px 18px; }
  .radar-hist { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .radar-bhead { display: none; }
  .radar-brow { grid-template-columns: 28px 1fr auto; gap: 6px 10px; padding: 14px; }
  .radar-rank { grid-row: 1; grid-column: 1; }
  .radar-tk { grid-row: 1; grid-column: 2; }
  .radar-flow { grid-row: 1; grid-column: 3; }
  .radar-label { grid-row: 2; grid-column: 1 / -1; }
  .radar-price, .radar-spark { display: none; }
  .radar-rhead { display: none; }
  .radar-rrow { grid-template-columns: 1fr 76px; gap: 6px 10px; }
  .radar-rname { grid-column: 1; }
  .radar-chg.c-today { grid-row: 1; grid-column: 2; }
  .radar-chg.c-5d, .radar-chg.c-20d, .radar-chg.c-120d, .radar-chg.c-w5, .radar-amt { display: none; }
  .radar-leader { grid-column: 1; text-align: left; }
  .radar-rspark { grid-row: 2; grid-column: 2; }
  .radar-drill { grid-column: 1 / -1; }
}

/* ==========================================================================
   工具球（老站 hero sphere 的 canvas 2D 移植，挂在 /community 的宣言旁）
   ========================================================================== */

.sphere-col { min-width: 0; }
.sphere-wrap {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  touch-action: none;
  cursor: grab;
}
.sphere-wrap:active { cursor: grabbing; }
.sphere-wrap canvas { display: block; width: 100%; height: 100%; }

.sphere-meta {
  position: absolute;
  top: 6px;
  left: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--muted-light);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: var(--track-wide);
  pointer-events: none;
}
.sphere-meta span { display: inline-flex; gap: 6px; align-items: center; }
.sphere-meta i { width: 5px; height: 5px; border-radius: 999px; background: var(--aqua); }
.sphere-meta-r { left: auto; right: 6px; align-items: flex-end; text-align: right; }

.sphere-node-label {
  position: absolute;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: var(--ink-2);
  color: var(--text);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  text-decoration: none;
  transform: translate(-50%, -140%);
  transition: opacity .2s, border-color .15s;
}
.sphere-node-label i { width: 5px; height: 5px; border-radius: 999px; background: var(--aqua); }
a.sphere-node-label:hover { border-color: var(--aqua); }
.sphere-node-label.is-back { opacity: .18; pointer-events: none; }

.sphere-ticker {
  position: absolute;
  color: var(--muted-light);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
.sphere-caption { margin: 10px 0 0; color: var(--muted-light); font-size: var(--fs-xs); text-align: center; letter-spacing: .04em; }

@media (max-width: 900px) {
  .sphere-wrap { max-width: 420px; }
}

/* ==========================================================================
   关于我们页（老站主页 hero 宣言迁入）
   ========================================================================== */

.about-hero { max-width: 720px; padding: var(--sp-5) 0 var(--sp-7);
 }
.about-mark {
  margin: 0;
  font-size: var(--fs-mega);
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
  color: var(--text);
}
.about-mark .dot { color: var(--aqua); }
.about-backronym { margin: 14px 0 0; color: var(--muted); font-size: var(--fs-xl); letter-spacing: .01em; }
.about-backronym strong { color: var(--text); }
.about-body { margin-top: 28px; }
.about-body p { margin: 10px 0 0; font-size: var(--fs-lg); line-height: var(--lh-loose); color: var(--muted); }
.about-body .em { color: var(--text); font-weight: 700; }
.about-signature { margin: 26px 0 0; color: var(--muted-light); font-size: var(--fs-md); font-style: italic; letter-spacing: .02em; }
.about-signature .sig-em { color: var(--aqua); font-style: italic; }

/* ==========================================================================
   账户：登录弹层 / 头部入口 / 账户页 / 退订页
   ========================================================================== */

.account-slot { position: relative; display: inline-flex; align-items: center; }
.account-door {
  padding: 5px 12px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: var(--fs-md);
  cursor: pointer;
  transition: color .15s;
}
.account-door:hover { color: var(--text); }
.account-chip {
  position: relative;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 5px 12px 5px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: none;
  color: var(--text);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: border-color .15s;
}
.account-chip:hover { border-color: var(--lime-dark); }
.account-chip > b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.account-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 210;
  display: flex;
  flex-direction: column;
  min-width: 210px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--surface-raised);
  text-align: left;
}
.account-menu a,
.account-menu button,
.account-menu .account-menu-row,
.account-menu .account-menu-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border: 0;
  border-radius: var(--r-m);
  background: none;
  color: var(--text);
  font-size: var(--fs-sm);
  text-align: left;
  text-decoration: none;
}
.account-menu a:hover,
.account-menu button:hover { background: var(--surface); cursor: pointer; }
.account-menu-head { color: var(--muted); border-bottom: 1px solid var(--line); border-radius: 0; }
.account-menu-row { color: var(--muted); }
.account-menu-row b { color: var(--lime-text); }

/* 开户卡里的两道副入口：邮箱找回 + 去 BIT 官网登录（组件内无登录能力） */
.register-doors {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.register-door-min { color: var(--muted-light); font-size: var(--fs-xs); text-decoration: none; }
.register-door-min:hover { color: var(--muted); }

/* 开户成功屏上的一行可选小字——openbit 账户永远只是可选项 */
.registration-optional { margin: 14px 0 0; color: var(--muted-light); font-size: var(--fs-sm); text-align: center; }

.bind-email { padding: 4px 0; }
.bind-lede { margin: 10px 0 0; color: var(--muted); font-size: var(--fs-lg); line-height: var(--lh-body); }
.bind-lede b { color: var(--lime-text); }
.bind-email form { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.bind-email small { display: block; margin-top: 16px; color: var(--muted-light); font-size: var(--fs-xs); line-height: var(--lh-body); }
.bind-actions { margin: 14px 0 0; }
.code-input { font-size: var(--fs-2xl); letter-spacing: 10px; text-align: center; }

.login-dev {
  margin: 14px 0 0;
  padding: 10px 12px;
  border: 1px dashed var(--amber);
  border-radius: var(--r-l);
  color: var(--amber);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}
.login-dev a { color: var(--amber); }

.account-page { padding: var(--band-pad) 0;
 }
.account-head { max-width: 640px; }
.account-head h1 { margin: 0; font-size: var(--fs-hero); line-height: var(--lh-heading); word-break: break-all; }
.account-lede { margin: 16px 0 0; color: var(--muted); font-size: var(--fs-lg); line-height: var(--lh-loose); }
.account-lede b { color: var(--text); }
.account-actions { margin: 26px 0 0; }

.account-card {
  max-width: 640px;
  margin-top: 28px;
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--surface);
}
.account-card h2 { margin: 0; font-size: var(--fs-xl); }
.account-card-lede { margin: 10px 0 0; color: var(--muted); font-size: var(--fs-lg); line-height: var(--lh-body); }
.account-card form { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; align-items: flex-start; }
.account-topic { display: flex; gap: 10px; align-items: flex-start; font-size: var(--fs-md); line-height: var(--lh-body); cursor: pointer; }
.account-topic input { margin-top: 2px; accent-color: var(--lime); }
.account-status { margin: 14px 0 0; color: var(--muted-light); font-size: var(--fs-sm); }

/* ==========================================================================
   订阅块（社区页收尾 + 个股页底部共用）
   --------------------------------------------------------------------------
   .community-head / .community-lede / .community-grid 2026-08-17 随社区页 v5 删：
   前两个从没被任何页面用过，第三个是那个「订阅卡 + TG 卡 + 微信卡 + 引言卡」
   的两栏网格——四格里三格在说"你现在进不来"，整块已经拆掉。
   下面这些 .community-subscribe / -perks / -form / -input / -foot / -success
   还在用（个股页底部那块订阅），不要跟着删。
   ========================================================================== */

.community-subscribe {
  padding: var(--card-pad);
  border: 1px solid var(--lime-dark);
  border-radius: var(--r-l);
  background: var(--surface);
}
.community-subscribe h2 { margin: 0; font-size: var(--fs-2xl); }

.community-perks { margin: 16px 0 0; padding: 0; list-style: none; }
.community-perks li {
  position: relative;
  padding-left: 18px;
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}
.community-perks li::before { content: "▸"; position: absolute; left: 0; color: var(--lime); }
.community-perks li b { color: var(--text); font-weight: 700; }
/* 「还没开始发」沿用全站那枚状态徽章：没做完就标没做完，和维护中的工具同一套语言 */
.community-perks .tools-status { margin-left: 8px; vertical-align: 1px; }

.community-form { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.community-input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--ink-2);
  color: var(--text);
}
.community-input:focus { outline: none; border-color: var(--lime-dark); }
.community-input::placeholder { color: var(--muted-light); }

.community-foot { margin: 14px 0 0; color: var(--muted); font-size: var(--fs-sm); }
.community-foot b { color: var(--lime-text); }
.community-success { margin: 22px 0 0; color: var(--text); font-size: var(--fs-md); line-height: var(--lh-body); }
.community-success b { color: var(--lime-text); }

/* .community-channels / -channel / -quote / -events / -event / -team / -member
   2026-08-17 随社区页 v5 全部删除，共九个卡片单元：
   - TG 卡「即将开放」+ 微信卡「暂不招人」= 半屏都在说"你现在进不来"，
     降成收尾下面一行小字；
   - 三张往期活动卡最近一场 67 天前、下一场没排期，唯一还在传达的信息是
     "这事停了两个月"，整段删；
   - 两张 team 卡孤零零挂在页尾像没写完，收成一行落款；
   - @Relander 那句引言并进落款，不再单独占一张卡。
   删掉的是壳，话都留着（见 renderCommunity 的 .community-close / -signoff）。 */

/* ==========================================================================
   社区页 v5（2026-08-17）：宣言是主角，其余只负责让它站得住
   --------------------------------------------------------------------------
   v4 的病：整页 15 个同级卡片单元，其中四类是"我们还没有"的牌子，全压在
   宣言下面。v5 不动宣言一个字，只把拖后腿的删掉 —— 卡片 15 → 4，页面高度
   砍一半。这一段只覆写社区页自己的排版，不碰 .community-subscribe /
   .community-perks / .community-form / .community-input / .community-foot /
   .community-success —— 那几条个股页的订阅块还在用。
   ========================================================================== */

/* 顶部留白交给 hero 自己的 min-height，页面容器不再额外顶一段 */
.community-page { padding: var(--band-pad) 0;
 }

/* 一 · 宣言给整屏，球并排坐右边（2026-08-17：「落地那句」删掉后，球从
   下一段提上来跟宣言同排，首屏 = 宣言 + 军火库球，不再各占一屏）。 */
.community-page .about-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 44px;
  align-items: center;
  min-height: min(66vh, 540px);
  margin: 0 0 70px;
}
.community-page .about-hero {
  max-width: 780px;
  padding: 0 0 24px;
}

/* B / I / T 是这页最精巧的一笔（OPEN + BIT），原来是灰色小字、加粗几乎
   看不出来。放大 + 主色，让它成为这页的记忆点。 */
.community-page .about-backronym {
  margin-top: 18px;
  font-size: var(--fs-2xl);
  letter-spacing: .015em;
}
.community-page .about-backronym strong {
  color: var(--lime);
  font-weight: 800;
}

/* 试过在 hero 底部加一条「往下看」滚动提示，实机上就是块碎片：
   宣言左对齐、提示孤零零挂在左下，跟谁都不挨着。近整屏的 hero 本身
   就在说"还有"，这个提示不挣它那块地方——删掉。 */

/* 二 · 「落地那句」+ .about-bridge 2026-08-17 整段删（CEO：这段话没什么用），
   球的尺寸约束随之挂到 .about-hero-row 上（见工具球那节）。 */

/* 三 · 军火库：只有在跑的进网格，2×2 大卡，第三行写今天的量级 */
.community-arsenal { margin: 0 0 82px; }
.community-arsenal .tools-group-head:first-child { margin-top: 0; }

.tools-grid-feature {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 26px;
}

.tools-card-feature { position: relative; padding: var(--card-pad-lg);
 }
.tools-card-feature .tools-card-head h2 { font-size: var(--fs-2xl); }
.tools-card-feature .tools-card-lede { margin-top: 12px; font-size: var(--fs-md); color: var(--muted); }

.tools-card-idx {
  position: absolute;
  top: 32px;
  right: 28px;
  color: var(--muted-light);
  font-size: var(--fs-xs);
  letter-spacing: var(--track-label);
}

/* min-height 占住一行：量级是异步填的，别让卡片在数据到达时跳一下 */
.tools-card-metric {
  min-height: 18px;
  margin: 18px 0 0;
  color: var(--lime-text);
  font-size: var(--fs-sm);
  letter-spacing: .02em;
}

/* 维护中的三台：仍然点名、仍然可点进去，但只占正文一行 */
.tools-parked-line {
  margin: 26px 0 0;
  color: var(--muted-light);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}
.tools-parked-line a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--line); }
.tools-parked-line a:hover { color: var(--text); border-bottom-color: var(--lime-dark); }

/* 四 · 收尾：一个邮箱框，居中。原来这里是订阅卡 + TG 卡 + 微信卡 + 引言卡
   + 三张活动卡 + 两张 team 卡，共九个单元。 */
.community-close {
  max-width: 620px;
  margin: 0 auto;
  padding: var(--sp-7) 0 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.community-close h2 {
  margin: 14px 0 0;
  font-size: var(--fs-2xl);
  font-weight: 800;
  line-height: var(--lh-body);
  letter-spacing: var(--track-tight);
}
.community-close .community-form { margin-top: 28px; }
/* .community-foot 小字 / .community-close-note / .community-signoff
   2026-08-17 CEO 拍板随整块删（个股页订阅块的 .community-foot 样式在通用段，不受影响） */

@media (max-width: 860px) {
  .tools-grid-feature { grid-template-columns: minmax(0, 1fr); }
  .community-page .about-hero-row { grid-template-columns: minmax(0, 1fr); gap: 26px; min-height: min(72vh, 560px); margin-bottom: 62px; }
  .community-page .about-hero { padding-bottom: 16px; }
  .community-arsenal { margin-bottom: 70px; }
  .tools-card-feature { padding: 26px 22px 28px; }
  .tools-card-idx { top: 28px; right: 22px; }
}

/* ============================================================
   首页 v5 · 今日盘面（ob- 命名空间）
   ------------------------------------------------------------
   首页 = "OpenBit 今天的输出"，不是介绍页。视觉基调：交易台。
   发丝线 + 等宽数字 + 编号 section，柠檬绿是唯一强调色，珊瑚红只表"跌/减"。
   禁 gradient（build 硬规则）；行内 style 会被 CSP 拒（style-src 'self'），
   要按比例画的东西一律走 SVG 呈现属性。
   ============================================================ */

.ob {
  overflow-x: clip;
}

.ob-band {
  padding: var(--band-pad) 0;
  border-top: 1px solid var(--line);
}

.ob-band-alt {
  background: var(--ink-2);
}

/* ---------- 编号 section 头 ---------- */

.ob-num {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--track-wide);
  color: var(--lime-dark);
}

.ob-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "num more" "text text";
  align-items: end;
  gap: var(--sp-3) 22px;
  margin: 0 0 var(--head-gap);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--line);
}

.ob-head .ob-num {
  grid-area: num;
}

.ob-head .ob-head-text {
  grid-area: text;
}

.ob-head .ob-more {
  grid-area: more;
  padding: 0;
}

.ob-head-text h2 {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: var(--lh-heading);
  letter-spacing: var(--track-display);
}

.ob-head-text p {
  margin: 11px 0 0;
  max-width: 62ch;
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--muted);
}

.ob-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 0 0;
  color: var(--lime);
  font-size: var(--fs-md);
  font-weight: 600;
  white-space: nowrap;
}

.ob-more i {
  font-style: normal;
  transition: transform .18s ease;
}

.ob-more:hover i {
  transform: translateX(4px);
}

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

.ob-hero {
  position: relative;
  padding: var(--band-pad-hero) 0 var(--band-pad);
}

.ob-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
}

.ob-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .82fr);
  gap: var(--col-gap);
  /* 左栏与右侧 rail 等高锚定：标题贴顶、fine print 锚底，
     搜索组浮在中间——右栏高出的部分被两段 auto 吃掉，不再堆在左栏底部 */
  align-items: stretch;
}

.ob-hero-copy {
  display: flex;
  flex-direction: column;
}

.ob-hero-copy .lp-ask {
  margin-top: auto;
}

.ob-hero-copy .ob-hero-note {
  margin-top: auto;
  padding-top: var(--sp-5);
}

/* 大字是搜索框的引导语，不是海报标题：从 58px 收到 42px，紧贴搜索框，
   中间不再夹说明段（说明段移到框下面）。搜索框才是这一屏的视觉重心。 */
.ob-h1 {
  /* max-width 按字数定：中文 1em ≈ 1 字，18em 保证 <br> 之前那 17 个字不再自己折行
     （折出来第二行只剩"辑，"两个字，很难看）。 */
  max-width: 18em;
  margin: 0 0 22px;
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: var(--lh-heading);
  letter-spacing: var(--track-display);
  text-wrap: balance;
}

.ob-lede {
  margin: 16px 0 0;
  max-width: 40em;
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
  color: var(--muted);
}

.ob-lede b {
  color: var(--text);
  font-weight: 600;
}

.ob-lede [data-ob-scope] {
  color: var(--text);
}

.ob .lp-ask {
  max-width: 620px;
  margin-bottom: 0;
}

/* 搜索框放大成首屏重心 */
.ob .lp-ask-box {
  min-height: 64px;
}

.ob .lp-ask-box input {
  font-size: var(--fs-lg);
}

.ob .lp-ask-box button {
  font-size: var(--fs-lg);
  font-weight: 800;
}

.ob-hero-note {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--muted-light);
}

/* ---------- 今日盘面卡 ---------- */

.ob-tape {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--r-s);
  padding: 0;
  overflow: hidden;
}

.ob-tape::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--lime);
}

/* 卡头（serif 斜体 "Today on the tape" + 统一日期）2026-08-17 整块删：
   三行的数据周期本就不同，顶上印一个共同日期等于替它们编一套口径。
   .ob-tape-date 那条规则其实一直没生效过——元素上挂的是 .lp-mono。 */

/* 三行各自可点，进对应那台雷达。原来整张卡零交互，看得见点不动。 */
.ob-tape-row {
  display: block;
  padding: 16px 20px 17px;
  border-bottom: 1px solid var(--line);
  transition: background .18s ease;
}

a.ob-tape-row:hover {
  background: var(--surface-raised);
}

.ob-tape-row:last-child {
  border-bottom: 0;
}

.ob-tape-k {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-wide);
  color: var(--muted-light);
}

.ob-tape-headline {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
}

.ob-tape-headline b {
  font-size: var(--fs-3xl);
  font-weight: 800;
  letter-spacing: var(--track-display);
  line-height: var(--lh-tight);
}

.ob-tape-headline b.up {
  color: var(--lime);
}

.ob-tape-headline b.down {
  color: var(--coral);
}

.ob-tape-headline i {
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.ob-tape-row small {
  display: block;
  margin-top: 7px;
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: var(--muted);
}

.ob-tape-row small.up {
  color: var(--lime);
  font-weight: 700;
  font-size: var(--fs-md);
}

.ob-tape-row small.down {
  color: var(--coral);
  font-weight: 700;
  font-size: var(--fs-md);
}

.ob-bar {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 11px;
}

.ob-bar-dn3 { fill: var(--coral); }
.ob-bar-dn2 { fill: #e0604f; }
.ob-bar-dn1 { fill: #b34e41; }
.ob-bar-dn0 { fill: #7d3d35; }
.ob-bar-fl  { fill: #454d47; }
.ob-bar-up0 { fill: #56691f; }
.ob-bar-up1 { fill: #7d9a2c; }
.ob-bar-up2 { fill: #a6cf39; }
.ob-bar-up3 { fill: var(--lime); }

.ob-tape-skeleton {
  display: grid;
  gap: 12px;
  padding: 22px 20px;
}

.ob-tape-skeleton i {
  display: block;
  height: 34px;
  border-radius: var(--r-s);
  background: var(--surface-raised);
  animation: obPulse 1.5s ease-in-out infinite;
}

.ob-tape-skeleton i:nth-child(2) { animation-delay: .18s; }
.ob-tape-skeleton i:nth-child(3) { animation-delay: .36s; }

@keyframes obPulse {
  0%, 100% { opacity: .45; }
  50% { opacity: .9; }
}

/* ---------- 01 大钱进了哪 ---------- */

.ob-flow-head,
.ob-flow-row {
  display: grid;
  grid-template-columns: 40px minmax(96px, 168px) minmax(0, 1fr) 148px;
  align-items: center;
  gap: 18px;
}

.ob-flow-head {
  padding: 0 4px 11px;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-wide);
  color: var(--muted-light);
  border-bottom: 1px solid var(--line);
}

.ob-flow-head .ta-r,
.ob-flow-row .ob-flow-amt {
  text-align: right;
}

.ob-flow-row {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  transition: background .16s ease;
}

.ob-flow-row:hover {
  background: var(--surface);
}

.ob-rank {
  font-size: var(--fs-xs);
  color: var(--muted-light);
}

.ob-flow-tk {
  display: block;
  min-width: 0;
}

.ob-flow-tk b {
  display: block;
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: var(--track-tight);
}

.ob-flow-tk small {
  display: block;
  margin-top: 2px;
  font-size: var(--fs-xs);
  color: var(--muted-light);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ob-flow-sig {
  min-width: 0;
  font-size: var(--fs-md);
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ob-flow-amt {
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: var(--track-tight);
}

.ob-flow-amt.up { color: var(--lime); }
.ob-flow-amt.down { color: var(--coral); }

.ob-flow-note {
  margin: 18px 0 0;
  max-width: 92ch;
  font-size: var(--fs-xs);
  line-height: var(--lh-loose);
  color: var(--muted-light);
}

/* ---------- 02 聪明钱 ---------- */

.ob-smart-faces {
  display: flex;
  gap: 8px;
  margin: 0 0 22px;
  padding-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.ob-smart-faces .lp-ig-person {
  flex: 0 0 auto;
  width: 214px;
}

.ob-smart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 356px;
  gap: var(--grid-gap);
  align-items: start;
}

.ob-smart-stage {
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: var(--surface);
  padding: 18px 18px 14px;
}

.ob-ig-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.ob-ig-caption b {
  font-size: var(--fs-lg);
  font-weight: 800;
}

.ob-ig-caption span {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--muted-light);
}

.ob-ig-open {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  color: var(--lime);
  font-size: var(--fs-md);
  font-weight: 600;
}

.ob-ig-open i {
  font-style: normal;
  transition: transform .18s ease;
}

.ob-ig-open:hover i {
  transform: translateX(4px);
}

.ob-smart-rail {
  display: grid;
  gap: 16px;
  align-content: start;
}

.ob-rail-block {
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: var(--surface);
  overflow: hidden;
}

.ob-rail-head {
  padding: 13px 15px 11px;
  border-bottom: 1px solid var(--line);
}

.ob-rail-head b {
  display: block;
  font-size: var(--fs-md);
  font-weight: 700;
}

.ob-rail-head span {
  display: block;
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--muted-light);
}

/* 共识行 */

.ob-cons {
  display: grid;
  grid-template-columns: 58px 92px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--line);
  transition: background .16s ease;
}

.ob-cons:last-child { border-bottom: 0; }
.ob-cons:hover { background: var(--surface-raised); }

.ob-cons-tk b {
  font-size: var(--fs-md);
  font-weight: 800;
}

.ob-cons-split {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: var(--fs-md);
}

.ob-cons-split b.up { color: var(--lime); font-weight: 700; }
.ob-cons-split b.down { color: var(--coral); font-weight: 700; }

.ob-cons-split i {
  font-style: normal;
  font-size: var(--fs-2xs);
  color: var(--muted-light);
  margin-right: 4px;
}

.ob-cons-who {
  min-width: 0;
  font-size: var(--fs-xs);
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 最大动作行 */

.ob-move {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--line);
  transition: background .16s ease;
}

.ob-move:last-child { border-bottom: 0; }
.ob-move:hover { background: var(--surface-raised); }

.ob-move-act {
  padding: 3px 0;
  border-radius: var(--r-s);
  text-align: center;
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .04em;
}

.ob-move-act.up { color: var(--ink); background: var(--lime); }
.ob-move-act.down { color: var(--ink); background: var(--coral); }

.ob-move-body {
  display: block;
  min-width: 0;
}

.ob-move-body b {
  font-size: var(--fs-sm);
  font-weight: 700;
}

.ob-move-body i {
  font-style: normal;
  margin-left: 6px;
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--lime);
}

.ob-move-body small {
  display: block;
  margin-top: 2px;
  font-size: var(--fs-2xs);
  color: var(--muted-light);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ob-move-num {
  text-align: right;
  font-size: var(--fs-md);
  font-weight: 700;
}

.ob-move-num.up { color: var(--lime); }
.ob-move-num.down { color: var(--coral); }

.ob-move-num em {
  display: block;
  font-style: normal;
  font-size: var(--fs-2xs);
  font-weight: 400;
  color: var(--muted-light);
}

.ob-move-asof {
  display: none;
}

.ob-rail-house {
  display: block;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: var(--surface);
  transition: border-color .16s ease;
}

.ob-rail-house:hover { border-color: var(--lime-dark); }

.ob-rail-house b {
  font-size: var(--fs-md);
  font-weight: 700;
}

.ob-rail-house p {
  margin: 7px 0 9px;
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: var(--muted);
}

.ob-rail-house span {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--lime);
}

.ob-rail-house i { font-style: normal; }

.ob-smart-legal {
  margin: 0;
  font-size: var(--fs-xs);
  line-height: var(--lh-loose);
  color: var(--muted-light);
}

/* ---------- 03 买入逻辑读数 ---------- */

.ob-thesis-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.ob-tk {
  appearance: none;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: color .16s ease, border-color .16s ease, background .16s ease;
}

.ob-tk:hover {
  color: var(--text);
  border-color: var(--muted-light);
}

.ob-tk.active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.ob-thesis-card {
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: var(--surface);
  overflow: hidden;
}

.ob-thesis-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.ob-thesis-id {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-right: auto;
}

.ob-thesis-id b {
  font-family: var(--font-mono);
  font-size: var(--fs-2xl);
  font-weight: 800;
  letter-spacing: var(--track-tight);
}

.ob-thesis-id span {
  font-size: var(--fs-md);
  color: var(--muted);
}

.ob-verdict {
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 700;
}

.ob-verdict.up { color: var(--lime); border-color: rgba(201,255,67,.35); }
.ob-verdict.down { color: var(--coral); border-color: rgba(255,112,93,.35); }
.ob-verdict.neutral,
.ob-verdict.mixed { color: var(--amber); border-color: rgba(246,184,74,.4); }

.ob-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.ob-facts > div {
  padding: 20px 22px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ob-facts > div:nth-child(2n) { border-right: 0; }
.ob-facts > div:nth-last-child(-n+2) { border-bottom: 0; }

.ob-facts dt {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  font-size: var(--fs-xs);
  letter-spacing: .09em;
  color: var(--muted-light);
}

.ob-facts dt em {
  font-style: normal;
  color: var(--lime-dark);
  font-size: var(--fs-xs);
}

.ob-facts dd {
  margin: 0;
  font-size: var(--fs-lg);
  line-height: var(--lh-body);
  color: var(--text);
}

.ob-facts > div:last-child dd {
  color: var(--coral);
}

.ob-thesis-graph {
  padding: 6px 12px 0;
}

.ob-thesis-foot {
  padding: 4px 22px 20px;
}

.ob-thesis-miss {
  padding: 40px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: var(--surface);
  text-align: center;
}

.ob-thesis-miss b { font-size: var(--fs-lg); font-weight: 700; }
.ob-thesis-miss p { margin: 9px 0 0; font-size: var(--fs-md); color: var(--muted); }

/* ---------- 04 门 ---------- */

.ob-door {
  background: var(--ink-2);
}

.ob-door-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: var(--col-gap);
  align-items: start;
}

.ob-door-copy h2 {
  margin: var(--sp-3) 0 0;
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: var(--lh-heading);
  letter-spacing: var(--track-display);
}

.ob-door-copy > p {
  margin: 18px 0 26px;
  max-width: 46ch;
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
  color: var(--muted);
}

.ob-door-list {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

/* 原来每条前面挂一个 <b>01</b>——但这三条是并列说明不是步骤，而且同一页上
   另有三组长得一样的数字（段头、资金流行号、fact 序号）。序号删掉，改发丝线分隔。 */
.ob-door-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--text);
}

.ob-door-legal {
  margin: 0;
  font-size: var(--fs-xs);
  line-height: var(--lh-loose);
  color: var(--muted-light);
}

.ob-picker {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: var(--surface);
  padding: var(--card-pad);
}

.ob-picker::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--lime);
}

.ob-picker-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

/* 原来是 serif 斜体的 "Your five"——全站三处装饰性英文之一，换成中文实名 */
.ob-picker-title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text);
}

.ob-picker-head span {
  font-size: var(--fs-md);
  color: var(--muted);
}

.ob-picker-head b {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--lime);
}

.ob-picker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 17px 0 20px;
}

.ob-pick {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color .16s ease, border-color .16s ease, background .16s ease;
}

.ob-pick b {
  font-family: var(--font-mono);
  font-size: var(--fs-md);
  font-weight: 700;
}

.ob-pick i {
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--muted-light);
}

.ob-pick:hover {
  color: var(--text);
  border-color: var(--muted-light);
}

.ob-pick.on {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.ob-pick.on i { color: var(--ink); }

.ob-picker-cta {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  border: 0;
  border-radius: var(--r-s);
  background: var(--lime);
  color: var(--ink);
  font-size: var(--fs-lg);
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s ease;
}

.ob-picker-cta i {
  font-style: normal;
  transition: transform .18s ease;
}

.ob-picker-cta:hover i { transform: translateX(4px); }
.ob-picker-cta:active { transform: translateY(1px); }

.ob-picker-note {
  margin: 12px 0 0;
  font-size: var(--fs-xs);
  color: var(--muted-light);
  text-align: center;
}

.ob-picker-sub {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: var(--muted);
}

.ob-picker-sub a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- 05 工具货架（2026-08-17 删）----------
   四张卡里三张是本页上面链接的第四次重复（/tools/flow-radar 在 FLOW 段头、
   /people 在 FILINGS 段头、/tools/portfolio-checkup 在首屏和门里各一次）。
   全量清单在 /community#arsenal。 */

/* ---------- 响应式 ---------- */

@media (max-width: 1080px) {
  .ob-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .ob-smart-grid { grid-template-columns: 1fr; }
  .ob-door-grid { grid-template-columns: 1fr; gap: 34px; }
  .ob-flow-head, .ob-flow-row { grid-template-columns: 34px minmax(90px, 140px) minmax(0, 1fr) 118px; gap: 14px; }
}

@media (max-width: 760px) {
  .ob-hero { padding: 34px 0 42px; }
  .ob-band { padding: 46px 0 50px; }

  .ob-h1 { font-size: var(--fs-3xl); letter-spacing: var(--track-display); }
  .ob-lede { font-size: var(--fs-md); line-height: var(--lh-loose); margin-bottom: 22px; }

  .ob-head {
    gap: var(--sp-2) var(--sp-4);
    margin-bottom: var(--sp-5);
  }

  .ob-tape-headline b { font-size: var(--fs-2xl); }

  /* 手机上信号列会把行挤爆——收起来，代码 + 金额是这一屏的全部重点 */
  .ob-flow-head, .ob-flow-row {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 12px;
    padding-inline: 0;
  }
  .ob-flow-head span:nth-child(3), .ob-flow-row .ob-flow-sig { display: none; }
  .ob-flow-amt { font-size: var(--fs-lg); }

  .ob-smart-faces .lp-ig-person { width: 178px; }
  .ob-smart-stage { padding: 14px 12px 12px; }
  .ob-smart-grid { gap: 18px; }

  .ob-facts { grid-template-columns: minmax(0, 1fr); }
  .ob-facts > div { border-right: 0; padding: 17px 18px; }
  .ob-facts > div:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .ob-facts > div:last-child { border-bottom: 0; }
  .ob-facts dd { font-size: var(--fs-md); }

  .ob-thesis-top { padding: 15px 18px; gap: 10px; }
  .ob-thesis-id b { font-size: var(--fs-2xl); }
  .ob-thesis-graph { padding: 4px 6px 0; }
  .ob-thesis-foot { padding: 4px 18px 18px; }

  .ob-door-copy > p { font-size: var(--fs-md); }
  .ob-picker { padding: 18px 16px 16px; }

}

@media (prefers-reduced-motion: reduce) {
  .ob-tape-skeleton i { animation: none; }
  .ob-more:hover i,
  .ob-ig-open:hover i,
  .ob-picker-cta:hover i { transform: none; }
}

/* ---------- 首页 v5 · 目检后的修正 ---------- */

/* 涨跌分布条：第一版红端偏暗、和灰底糊在一起，8px 也太细读不出结构。
   加高到 11px，跌端提亮，中间平盘留一道明显的分界。 */
.ob-bar {
  height: 11px;
  margin-top: 12px;
}

.ob-bar-dn3 { fill: #ff6a55; }
.ob-bar-dn2 { fill: #f2604c; }
.ob-bar-dn1 { fill: #d05543; }
.ob-bar-dn0 { fill: #9c4438; }
.ob-bar-fl  { fill: var(--muted-light); }
.ob-bar-up0 { fill: #6b8425; }
.ob-bar-up1 { fill: #8fb232; }
.ob-bar-up2 { fill: #b0dc3c; }
.ob-bar-up3 { fill: var(--lime); }

.ob-bar-key {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  color: var(--muted-light);
}

/* 关系图有自己的原生尺寸（760×470）。铺满 1180px 的内容宽会被拉成 715px 高，
   驱动少的时候整块几乎全是空的——限宽居中，图回到该有的密度。 */
.ob-thesis-graph {
  display: flex;
  justify-content: center;
}

.ob-thesis-graph .lp-thesis {
  width: 100%;
  max-width: 820px;
}

/* 两条副入口并排（原来只有一条，靠 margin-left 贴在一句话后面）。
   改成 flex + 24px 间距，否则两个链接会挤成一行读不出边界。 */
.ob-hero-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 18px 0 10px;
  font-size: var(--fs-md);
  color: var(--muted);
}

.ob-hero-jump a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lime);
  font-weight: 600;
  border-bottom: 1px solid rgba(201,255,67,.35);
  padding-bottom: 1px;
}

.ob-hero-jump i {
  font-style: normal;
  transition: transform .18s ease;
}

.ob-hero-jump a:hover i { transform: translateY(2px); }

/* 一只都没选时按钮不该长得像"可以点了"——降到线框态，点了给的也是提示不是墙。 */
.ob-picker-cta.is-idle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
}

.ob-picker-cta.is-idle:hover {
  border-color: var(--muted-light);
  color: var(--text);
}

/* 工具清单：在跑的 / 维护中分组（现挂在 /community 的军火库一段） */
.tools-group-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin: var(--sp-7) 0 var(--sp-5);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.tools-group-head h2 {
  margin: 0;
  font-size: var(--fs-xl);
  font-weight: 800;
  letter-spacing: var(--track-tight);
}

.tools-group-head span {
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* .tools-group-head.is-parked / .tools-grid-parked 2026-08-17 删：
   维护中的工具不再有自己的分组头和整排卡，降成 .tools-parked-line 一行。 */

@media (max-width: 760px) {
  .tools-group-head { margin-top: 30px; }
}

/* .about-bridge / .about-bridge-copy 2026-08-17 删：「站上每天在跑的东西」
   那段 CEO 拍板砍掉，球提进 .about-hero-row 跟宣言并排（见 community 那节）。
   .about-bridge-list 更早已删：定义过但页面上从来没用过。 */

/* ---------- 手机端首屏收紧 ---------- */

@media (max-width: 430px) {
  /* 390px 下横版锁定 + 主 CTA + 汉堡挤在一行会互相压字——顶栏只留图形标，
     字标让位给唯一的转化入口（页脚的完整锁定还在）。 */
  .site-header .brand-lockup {
    display: none;
  }

  .site-header .brand-glyph {
    display: block;
  }
}

@media (max-width: 760px) {
  /* 四个 chip 竖排要吃掉 200px，把"今日盘面"整张卡推出首屏之外。
     横向滚一行是手机上更熟的形态，省下的高度直接换成"证据提前出现"。 */
  .ob .lp-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .ob .lp-chips::-webkit-scrollbar {
    display: none;
  }

  .ob .lp-chip {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .ob-hero-jump {
    font-size: var(--fs-sm);
    line-height: var(--lh-body);
  }
}

/* grid/flex 子项默认 min-width:auto——里面只要有一个撑不住的横向滚动条或长
   等宽串，整列就会被顶宽，页面跟着横向溢出。首页所有会装真数据的容器统一封 0。 */
.ob-hero-copy,
.ob-hero-grid > *,
.ob-smart-grid > *,
.ob-door-grid > *,
.ob-flow-row > *,
.ob-move-body,
.ob .lp-ask {
  min-width: 0;
}

/* 图只画权重前 6，剩下的用一行事实交代——不交代就等于暗示"这就是他的全部持仓" */
.ob-ig-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 16px;
  margin: 4px 0 0;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--muted);
}

.ob-ig-stats em {
  margin-left: auto;
  font-style: normal;
  font-size: var(--fs-xs);
  color: var(--muted-light);
}

.ob-ig-exited {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
}

.ob-ig-exited span {
  font-size: var(--fs-xs);
  color: var(--muted-light);
  margin-right: 2px;
}

.ob-ig-exited b {
  padding: 3px 8px;
  border: 1px solid rgba(255,112,93,.35);
  border-radius: var(--r-s);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--coral);
}

/* 右栏（共识 + 最大动作 + 国会山）比左边那张图高，start 对齐会在图下留一块
   两三百像素的空洞。让卡片撑满整行，图在里面垂直居中。 */
.ob-smart-grid {
  align-items: stretch;
}

.ob-smart-stage {
  display: flex;
  flex-direction: column;
}

.ob-smart-stage .lp-ig-stage {
  flex: 1;
  display: flex;
  align-items: center;
}

.ob-smart-stage .lp-ig-stage svg {
  width: 100%;
  height: auto;
}

.ob-picker-hint {
  margin: 13px 0 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: var(--muted-light);
}

.ob-picker-grid {
  margin-top: 12px;
}

/* 关系图在驱动数少的时候（比如只有 1 多 1 空）会留一大块空——
   把可视宽度再收一点，高度跟着降下来。 */
.ob-thesis-graph .lp-thesis {
  max-width: 720px;
}

/* ==========================================================================
   导航改版（2026-08-17）：工具从顶栏解散进各自那一格之后，
   新出现的三类区块——盘面摘要卡、维护中带、社区军火库。
   ========================================================================== */

/* ---------- 盘面：体温 / 主力 / 轮动 三块摘要 ---------- */

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  margin-bottom: 46px;
  border: 1px solid var(--line);
  background: var(--line);
}

.pulse-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--card-pad);
  background: var(--surface);
  transition: background .18s ease;
}

.pulse-card:hover {
  background: var(--surface-raised);
}

.pulse-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.pulse-card-head .eyebrow {
  margin: 0;
}

.pulse-card-head span {
  font-size: var(--fs-xs);
  color: var(--muted-light);
  white-space: nowrap;
}

.pulse-card-main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
}

.pulse-card-main b {
  font-size: var(--fs-3xl);
  font-weight: 800;
  letter-spacing: var(--track-tight);
  line-height: var(--lh-tight);
}

.pulse-card-main b.up { color: var(--aqua); }
.pulse-card-main b.down { color: var(--coral); }

.pulse-card-main i {
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.pulse-card-sub {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  color: var(--muted-light);
}

.pulse-card-go {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 4px;
  color: var(--lime);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.pulse-card-go i {
  font-style: normal;
  transition: transform .18s ease;
}

.pulse-card:hover .pulse-card-go i {
  transform: translateX(3px);
}

.pulse-flow-list,
.pulse-board-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.pulse-flow-row,
.pulse-board-row {
  display: grid;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-md);
}

.pulse-flow-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.pulse-board-row {
  grid-template-columns: 22px minmax(0, 1fr) auto;
}

.pulse-board-rank {
  color: var(--muted-light);
  font-size: var(--fs-xs);
}

.pulse-flow-row b,
.pulse-board-row b {
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pulse-flow-row span,
.pulse-board-row span {
  font-size: var(--fs-sm);
  font-variant-numeric: tabular-nums;
}

.pulse-flow-row .up,
.pulse-board-row .up { color: var(--aqua); }
.pulse-flow-row .down,
.pulse-board-row .down { color: var(--coral); }

/* ---------- 维护中的工具：归到它服务的那一格，如实标状态 ---------- */

.market-parked {
  margin: 46px 0 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.market-parked-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}

.market-parked-head b {
  font-size: var(--fs-md);
  font-weight: 800;
}

.market-parked-head span {
  font-size: var(--fs-sm);
  color: var(--muted-light);
}

.market-parked-row {
  display: grid;
  align-items: center;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  transition: background .18s ease;
}

.market-parked-row:last-child {
  border-bottom: none;
}

.market-parked-row:hover {
  background: var(--surface-raised);
}

.market-parked-row b {
  font-size: var(--fs-md);
  font-weight: 700;
}

.market-parked-row span {
  font-size: var(--fs-md);
  color: var(--muted);
}

.market-parked-row i {
  font-style: normal;
}

/* ---------- 社区：这个圈子造出来的军火库 ---------- */

/* .about-forge-stats（7 台工具 / 4 在跑 / 3 维护中 那三个大数字）2026-08-17 删：
   三个里两个是负面的，等于在宣言下面第一句就宣布"我们三分之一坏了"。
   排版归 .community-arsenal 那一段统一管（本文件「社区页 v5」小节）。 */

.community-arsenal .tools-grid {
  margin-top: 0;
}

.community-arsenal .tools-foot a {
  color: var(--lime-text);
  border-bottom: 1px solid rgba(201,255,67,.35);
}

.community-arsenal .tools-foot a:hover {
  border-bottom-color: var(--lime);
}

/* ---------- 追踪页：空手进来的人要接得住 ---------- */

.monitor-entry {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: var(--fs-md);
}

.monitor-entry span {
  color: var(--muted);
}

.monitor-entry a {
  color: var(--lime);
  font-weight: 700;
  border-bottom: 1px solid rgba(201,255,67,.35);
}

.monitor-entry a:hover {
  border-bottom-color: var(--lime);
}

/* 球从 /tools 迁过来，尺寸约束也得跟着迁：不在这儿设上限的话，球会按
   640px 铺开，把宣言那一块撑高一大截。400px：跟宣言并排时留白仍在，
   虚胖去掉。 */
.about-hero-row .sphere-wrap {
  max-width: 400px;
}

/* 球拿不到 WebGL 被摘掉时，宣言那块塌回单列，别在右边留半屏空白 */
.about-hero-row.is-flat {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 760px) {
  .pulse-grid { grid-template-columns: 1fr; }
  .market-parked-row { grid-template-columns: 1fr auto; }
  .market-parked-row span { grid-column: 1 / -1; }
}

/* ---------------------------------------------------------------- 身份与权限
   docs/PERMISSIONS.md 的视觉落点。三条：
   1. 有资格/没资格必须一眼看得出（顶栏徽章、账户页 badge），
   2. 额度是回显不是承诺——数字旁边永远写清楚"今日剩余"，
   3. "待核验"永远显式标出来，不许用绿色对勾糊弄过去。 */

.account-alpha {
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 999px;
  border: 1px solid var(--lime-dark);
  color: var(--lime-text);
  font-size: var(--fs-2xs);
  font-style: normal;
  letter-spacing: .04em;
}
.account-menu-note {
  display: block;
  padding: 2px 10px 8px;
  color: var(--amber);
  font-size: var(--fs-xs);
  line-height: var(--lh-snug);
}

/* 账户页：额度表 */
/* 用每格自己的描边，不用"底色透出来当分隔线"那招——
   条目数填不满最后一行时，那招会留下一个实心色块假装成一格。 */
.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
  margin: 16px 0 0;
}
.access-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
}
.access-row dt { color: var(--muted); font-size: var(--fs-sm); }
.access-row dd { margin: 0; color: var(--text); font-size: var(--fs-md); }
.access-row dd b { font-size: var(--fs-2xl); font-weight: 600; letter-spacing: var(--track-tight); }
.access-row dd span { color: var(--muted-light); font-size: var(--fs-xs); margin-left: 4px; }

/* 账户页：BIT 关联 */
.account-badge-line { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 14px 0 0; }
.account-badge {
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-sm);
}
.account-badge.on { border-color: var(--lime-dark); color: var(--lime-text); }
.account-uid { color: var(--muted-light); font-size: var(--fs-sm); font-variant-numeric: tabular-nums; }
/* 待核验一律用琥珀色写成一句人话，不给绿勾 */
.account-warn {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-left: 2px solid var(--amber);
  background: var(--surface);
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}
.account-uid-form { margin-top: 16px; }
.account-uid-form label { display: block; color: var(--muted); font-size: var(--fs-sm); margin-bottom: 6px; }
.account-uid-form div { display: flex; gap: 8px; flex-wrap: wrap; }
.account-uid-form input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: var(--r-m);
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--text);
  font-size: var(--fs-md);
  font-variant-numeric: tabular-nums;
}
.account-uid-form input:focus { outline: none; border-color: var(--lime-dark); }

/* 额度回显：问答卡右上角 + 用尽时的转化位 */
.ask-quota { margin-left: auto; color: var(--muted-light); font-size: var(--fs-xs); }
.ask-quota-actions { margin: 14px 0 0; }

/* 追踪页顶部的资格指示 */
.monitor-state.on i { background: var(--lime); }
.monitor-state.on span { color: var(--lime-text); }

/* 登录卡里的邮箱标签 */
.bind-label { display: block; color: var(--muted); font-size: var(--fs-sm); margin-bottom: 6px; }
.registration-note { margin: 10px 0 0; color: var(--muted-light); font-size: var(--fs-sm); line-height: var(--lh-body); }
.bind-actions { margin: 12px 0 0; }

/* 引擎状态从顶栏挪到页脚后的排版 */
.site-footer .source-status { margin-top: 14px; }

/* ---------------- 跟踪钩子（权限模型第二版 2026-08-17） ----------------
   转化位从「额度用尽」挪到「结论下面」：每条结论都带一个日期和一个失效条件，
   钩子长在读完的那一刻。视觉上要像结论的一部分，不像广告位——
   所以用同色系边框和克制的留白，不用高对比按钮块。 */

/* 弹层左栏：带跟踪对象时列他自己的内容，不是我们的功能清单 */
.register-value li.register-track-row {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding-left: 0;
}
.register-value li.register-track-row::before { content: none; }
.register-value li.register-track-row b {
  flex: 0 0 84px;
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.register-value li.register-track-row span {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--text);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}

/* 问答答案下面的钩子 */
.ask-track {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.ask-track p {
  flex: 1 1 260px;
  margin: 0;
  color: var(--muted-light);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}

/* 持仓体检结论下面的"这份结论不是永久的" */
.result-openloop {
  margin: 14px 0 0;
  color: var(--muted-light);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}

/* UID 绑定屏的找码指引（交接包 README §4.4：不给指引就是设计死角） */
.uid-guide {
  margin: 14px 0 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--ink-2);
}
.uid-guide p { margin: 0 0 8px; color: var(--muted-light); font-size: var(--fs-sm); line-height: var(--lh-body); }
.uid-guide p b { color: var(--text); font-weight: 600; }
.uid-guide .lp-ghost { margin-top: 4px; }

/* 全站签名：页面 h1 的句号取 lime——呼应社区页 OPENBIT. 的点 */
.h1-dot {
  color: var(--lime);
  font-style: normal;
}

/* 换设备点 magic link 时的同源确认页（server/index.mjs 的 loginConfirmPage）。
   这页由服务端直出、不经过 app.js，CSP 又禁内联样式，所以样式只能落在这里。 */
.auth-confirm {
  max-width: 460px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-5) var(--sp-7);
}
.auth-confirm h1 {
  margin: 0 0 var(--sp-3);
  color: var(--text);
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
}
.auth-confirm p {
  margin: 0 0 var(--sp-3);
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}
.auth-confirm button {
  margin-top: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  border: 0;
  border-radius: var(--r-m);
  background: var(--lime);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

/* 兑换码区块（首页 + /register）。注册并登录后填一次码，内测通行证加天数。
   右栏是三态槽（没注册→按钮 / 没登录→按钮 / 齐了→输入框），高度会变，别写死。 */
.ob-code-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: var(--col-gap);
  align-items: start;
}
.ob-code-copy h2 {
  margin: var(--sp-3) 0 0;
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: var(--lh-heading);
  letter-spacing: var(--track-display);
}
.ob-code-copy > p {
  margin: var(--sp-3) 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}
.ob-code-form {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--ink-2);
}
.ob-code-form .community-input { background: var(--ink); }
.ob-code-msg {
  margin: 0;
  color: var(--lime-text);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
}
.ob-code-msg.is-error { color: var(--muted); }
.ob-code-compact { padding-top: 0; }
@media (max-width: 860px) {
  .ob-code-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ===== handoff 三步（出站注册 + UID 核验）=====
   组件拿不到时的主线。样式只用既有 token，不新增色值/字号刻度。 */
.handoff-step{display:flex; flex-direction:column; gap:var(--sp-3, 12px)}
.handoff-step h3{margin:0; font-size:var(--fs-lg, 20px); font-weight:600; line-height:1.3}
.handoff-lede{margin:0; color:var(--muted); font-size:var(--fs-sm, 13px)}
.handoff-note{margin:0; color:var(--muted-light); font-size:var(--fs-xs, 11px); line-height:1.6}
.handoff-note a{color:var(--lime-text)}
.handoff-facts{list-style:none; margin:0; padding:0; display:flex; flex-direction:column}
.handoff-facts li{display:flex; gap:14px; padding:10px 0; border-top:1px solid var(--line); font-size:var(--fs-sm, 13px)}
.handoff-facts li b{color:var(--muted); font-weight:400; min-width:96px}
.handoff-facts li span{color:var(--text)}
/* UID 输入 + 粘贴：粘贴一律由用户手势触发，不静默读剪贴板 */
.uid-row{display:flex; gap:8px; align-items:center}
.uid-row .community-input{flex:1}
.uid-detected{font-family:var(--font-mono); font-size:var(--fs-lg, 20px); letter-spacing:.1em; color:var(--lime-text); margin:6px 0 10px}
/* 找码指引：默认折叠，展开才占位置——大多数人在注册页已经复制过 UID */
.uid-guide{border:1px solid var(--line); border-radius:10px; background:var(--surface-raised); padding:0}
.uid-guide summary{cursor:pointer; padding:10px 13px; font-size:var(--fs-sm, 13px); color:var(--text); list-style:none}
.uid-guide summary::-webkit-details-marker{display:none}
.uid-guide summary::after{content:"展开"; float:right; font-family:var(--font-mono); font-size:var(--fs-2xs, 10px); color:var(--muted-light)}
.uid-guide[open] summary::after{content:"收起"}
.uid-guide-steps{list-style:none; margin:0; padding:0 13px; display:flex; flex-direction:column; gap:8px}
.uid-guide-steps li{display:flex; gap:10px; font-size:var(--fs-sm, 13px); color:var(--muted)}
.uid-guide-steps li b{font-family:var(--font-mono); font-size:var(--fs-xs, 11px); color:var(--lime-text); flex:none; padding-top:2px}
.uid-guide-steps li span{color:var(--text)}
.uid-guide-note{margin:0; padding:10px 13px 13px; font-size:var(--fs-xs, 11px); color:var(--muted-light)}
