/* 字体：全部在 css/fonts.css（2026-09-25）。
   原来这里是三条外部 @import（Google Fonts + 两个 jsDelivr 中文字体包），
   两个问题：中文字体没写 font-display，网慢时字会隐形几秒；Google Fonts 在国内打不开，
   而 @import 的样式表会挡住整页渲染。详见 fonts.css 开头。
   标题 Geist + 阿里妈妈东方大楷；正文 Inter + 霞鹜文楷 Screen —— 用法见下面 --font-* 三个变量。 */
@import url("fonts.css?v=92");

/* ==========================================================================
   设计令牌（Design Tokens）—— 从 eden.so/bootcamp 实测提取 + 中文排版适配
   改主题只需要动这一段。
   ========================================================================== */
:root {
  /* --- 颜色：2026-09-24 配色方案 B「墨朱」（作者从 A–E 五套里选的）---------------
     六个主色号，分工固定：
       底色   松烟墨 #0E0C0A    卡片   乌木 #191612    强调底 胭脂底 #2A1712
       主文字 宣纸白 #F2ECE2    次文字 旧纸灰 #A69C8E  主色   朱砂 #C8452E
     其余灰阶（正文、更淡的说明、边线）都是从这六个里按亮度插值出来的暖灰，
     全站所有纯黑白灰已经换成这套暖灰（生成脚本见 CHANGELOG 2026-09-24）。

     朱砂的用法（主色不到 10%）：主按钮、实时人数小点、进度条、手绘下划线、
     引语竖线、勾、「当前」小标、印章。价格一律用主文字色，不用红 —— 红色大数字像打折。
     朱砂做小字对比度不够（4.0），所以要写成红字时用浅一档的 --accent-text（5.7）。 */
  --bg: #0E0C0A;                  /* 底色 · 松烟墨 */
  --bg-alt: #100E0C;              /* 交替区块底色，肉眼几乎看不出，但能断开节奏 */
  --bg-elevated: #191612;         /* 卡片 · 乌木 */
  --bg-elevated-2: #1F1C17;       /* 卡片里的卡片 */
  --bg-accent: #2A1712;           /* 强调底 · 胭脂底：定金框、高亮卡 */

  --border: rgba(242,236,226,0.08);
  --border-strong: rgba(242,236,226,0.16);
  /* [Eden 实测] 卡片边框比通用边框亮一档，是 .10 不是 .08。 */
  --border-card: rgba(242,236,226,0.10);

  --text-primary: #F2ECE2;        /* 主文字 · 宣纸白（对比 16.6）*/
  --text-body: #D3CCC0;           /* 正文 */
  --text-muted: #A69C8E;          /* 次文字 · 旧纸灰（对比 7.2）*/
  --text-faint: #887F73;          /* 更淡的说明（底上 5.0、卡片上 4.6，都过 AA）*/

  --accent: #C8452E;              /* 主色 · 朱砂（对比 4.0，按钮 / 大字 / 图形） */
  --on-accent: #FFF8F0;           /* 朱砂上的字（对比 4.6）*/
  --accent-text: #E0654A;         /* 要写成红字时用这个（对比 5.7）*/
  --accent-soft: rgba(200,69,46,0.14);
  --accent-glow: rgba(200,69,46,0.07);
  --accent-prev: #fafafa;         /* 改版前的主色（Eden 纯白），留底方便回退 */
  --primary-bright: #E0654A;      /* 页尾图标 hover */

  /* --- 字体 --- */
  /* [Eden 实测] 标题用 Geist，正文用 Inter —— 是两套字体，不是一套。
     注意：Eden 的类名叫 .font-serif，但它指向的是 Geist（无衬线），
     全站没有一处真的用衬线体，别被类名骗了。
     Geist / Inter 都不含中文字形，中文靠后面的回退栈接。 */
  /* 大标题专用：拉丁字走 Geist，中文走东方大楷。
     字体列表是**逐字符**匹配的，所以顺序决定了哪种字用哪套 —— 
     Geist 没有中文字形，中文会自动落到后面的东方大楷上。 */
  --font-display-cn: "Geist", "Alimama DongFangDaKai", "PingFang SC",
                     "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  /* 小标题和界面文字仍用 Geist + 系统中文：东方大楷是展示体，
     18px 以下笔画会糊，不适合当通用标题字。 */
  --font-heading: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "PingFang SC",
                  "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  /* 正文：拉丁字走 Inter，中文走霞鹜文楷。逐字符匹配，各管各的。 */
  --font-body: "Inter", "LXGW WenKai Screen", -apple-system, BlinkMacSystemFont,
               "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;

  /* 字距分两档 —— 之前"中文一律不能用 -0.035em"这个结论下早了。
     实测过：Eden 那份保存页面本身就是中文 DOM，-0.035em 是实打实压在
     中文标题上的，在 40px 以上的大标题里效果是好的，压得紧、有份量。
     但小字号上确实会糊，所以按字号分档：
       大标题（h1/h2）走 Eden 原值 -0.035em
       小标题及以下走 -0.01em                                        */
  --tracking-display: -0.035em;   /* [Eden 源码] .tracking-tight */
  --tracking-heading: -0.01em;    /* 小标题保持原值 */

  /* [Eden 实测] h1 1.02 / h2 1.12 / 正文 1.7 / 通用 1.625
     h1 这里用 1.08 不用 1.02 —— 本站 h1 是两行中文（"从第一笔收入，/
     到长期资产积累"），1.02 会让两行的字咬在一起。这是刻意偏离，见 README。*/
  --leading-h1: 1.08;
  --leading-heading: 1.12;   /* [Eden 实测] h2 行高 */
  /* 楷体的字面比黑体小、笔画更疏，行距要比 Eden 的 1.7 再松一点才透气。
     这是为中文楷体做的偏离，不是照抄 Eden。 */
  --leading-body: 1.78;

  --radius-pill: 9999px;
  --radius-card: 16px;       /* [Eden 实测] rounded-2xl，原站是 20 */
  --radius-card-sm: 14px;    /* [Eden 实测] 见证卡，与原站一致 */
  --radius-glass: 24px;      /* [Eden 源码] rounded-glass，全站只给最重的那张卡 */
  --radius-box: 12px;        /* [Eden 实测] 强调说明框 */

  /* [Eden 实测] 容器宽度是分档的，不是一个值走到底：
     首屏内容列 820（正文只到 640）/ 网格 1040 / 长正文 680 / 通栏 1120 */
  --container-w: 1120px;         /* 原 1100 */
  --container-w-narrow: 680px;   /* 原 720 */
  --container-w-hero: 820px;     /* [Eden 实测] 首屏内容列 */
  --container-w-hero-lede: 640px;/* [Eden 实测] 首屏正文换行宽度，比标题列窄 180 */
  --container-w-grid: 1040px;    /* [Eden 实测] 成果网格，比首屏宽 220 */
  --gutter: 24px;                /* [Eden 实测] px-6，≥768 变 32 */

  --nav-h: 57px;                 /* [Eden 实测] 原站是 64 */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.625;   /* [Eden 实测] body 通用行高 26/16；长正文另用 1.7 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* [Eden 移植] 全屏环境光层 —— 照抄参考页的 html::before。
   固定定位盖满视口，plus-lighter 混合，两团极淡的白：左上 2%、右下 1%。
   这是参考页真有的一层，不是我加的装饰；它和下面的噪点层职责不同，
   噪点管"颗粒感"，这层管"光从哪来"，两层同时留着。 */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  pointer-events: none;
  mix-blend-mode: plus-lighter;
  background-image:
    radial-gradient(ellipse 120% 90% at 15% -10%, rgba(255,248,240,.02) 0, rgba(255,248,240,0) 75%),
    radial-gradient(ellipse 110% 80% at 105% 110%, rgba(255,248,240,.01) 0, rgba(255,248,240,0) 80%);
}

/* 全局噪点层：深色页面没有这层会"死平"，有了才有质感。
   opacity 压到 0.03 以下，肉眼看不见颗粒，但能感觉到不一样。 */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* 键盘可达性：Tab 选中时要看得见 */
:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* [Eden 移植 · 重要] 容器宽度的语义对齐。
   Eden 的做法是：留白给 section，内层容器的 max-width 就是**内容列宽度**。
   原站是 border-box + 内层带 padding，所以 max-width:1120 实际只剩 1056 的内容，
   比 Eden 窄了整整 64px —— 每一档容器都窄 64，整站比例都会偏。
   这里把令牌的语义统一成"内容列宽度"，外框自己加上两侧留白。 */
.container {
  max-width: calc(var(--container-w) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.container--narrow { max-width: calc(var(--container-w-narrow) + var(--gutter) * 2); }
/* [Eden 实测] px-6 md:px-8 —— 左右留白在 768px 上从 24 变 32 */
@media (min-width: 768px) { :root { --gutter: 32px; } }

/* --------------------------------------------------------------------------
   占位内容标记
   凡是 <span class="ph"> 包起来的，都是还没填的真实内容（数字、姓名、见证、价格）。
   body 上带 show-placeholders 时显示虚线下划线，方便一眼扫出还差什么。
   全部填完准备上线 → 删掉 <body> 上的 show-placeholders 类，标记立刻全部消失。
   -------------------------------------------------------------------------- */
.show-placeholders .ph {
  border-bottom: 1px dashed rgba(255, 107, 82, 0.55);
  text-underline-offset: 3px;
}
.show-placeholders .stat-card__media,
.show-placeholders .chart-placeholder__box {
  border-color: rgba(255, 107, 82, 0.4);
}

/* ==========================================================================
   排版
   ========================================================================== */
/* [Eden 实测] 小标签：Geist 11.2px / 行高 18.2 / 字距 -0.01em / #737373
   注意参考页的 eyebrow 是**负字距**，不是原站这种 +0.04em 的字间拉开。 */
.eyebrow {
  font-family: var(--font-heading);
  font-size: 11.2px;
  line-height: 1.625;
  color: var(--text-faint);
  letter-spacing: var(--tracking-heading);
  margin: 0 0 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: var(--tracking-heading);
  line-height: var(--leading-heading);
  color: var(--text-primary);
  margin: 0;
  text-wrap: balance;          /* 标题自动均分换行，避免末行孤字 */
}

/* [Eden 源码] clamp(2.4rem, 5.4vw, 4.1rem) → 1440 下 65.6px，390 下 38.4px
   字重 500 不是 600 —— Eden 的大标题是"大而不厚"。 */
h1 {
  font-family: var(--font-display-cn);
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  /* 东方大楷只有一个字重。写 500 会让浏览器去"合成加粗"，笔画糊成一团，
     所以这里必须是 400 —— 它本身的骨力已经够了，不需要再加粗。 */
  font-weight: 400;
  /* 楷体结构比黑体松，-0.035em 会让笔画互相插进去。收到 -0.01em。 */
  letter-spacing: var(--tracking-heading);
  line-height: var(--leading-h1);
}
/* Eden 的招牌手法：第一行灰、第二行白，视线自然往下沉 */
h1 .line-muted { color: var(--text-muted); display: block; }
h1 .line-bright { color: var(--text-primary); display: block; }

/* [Eden 源码] clamp(1.7rem, 3.2vw, 2.5rem) → 1440 下 40px，390 下 27.2px */
h2 {
  font-family: var(--font-display-cn);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 400;                          /* 同上：不合成加粗 */
  letter-spacing: var(--tracking-heading);
}
h2 .dim { color: var(--text-muted); font-weight: 600; }

/* h3 及以下不跟 -0.035em：那个字距在 18px 的中文上会糊。这是刻意分档。 */
h3 { font-size: 1.1rem; font-weight: 500; letter-spacing: var(--tracking-heading); }

p { margin: 0 0 18px; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* [Eden 源码] 首屏正文 clamp(1.12rem, 1.7vw, 1.35rem)，行高 1.6
   → 1440 下 21.6px/34.56，390 下 17.92px/28.67 */
.lede {
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.6;
  color: var(--text-body);
}
.lede strong { color: var(--text-primary); font-weight: 600; }

/* [Eden 实测] h2 下面那行副标题是独立一档：16.8px / 1.625 / #a3a3a3 */
.section-header .lede,
.sub {
  font-size: 1.05rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.text-muted { color: var(--text-muted); }
.highlight { color: var(--accent); font-weight: 600; }

blockquote {
  margin: 32px 0;
  padding-left: 22px;
  border-left: 2px solid var(--border-strong);
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-primary);
}
blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: normal;
}

/* ==========================================================================
   按钮
   ========================================================================== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* [Eden 实测] 主按钮不是平涂的白，是 #fff → #e8e8e8 的竖向微渐变，
     加四层阴影（一层内高光 + 三层外投影）。悬停时渐变收成纯白、阴影加深、
     上移 2px。这套是 Eden 质感的大头，平涂白会明显"塌"。
     尺寸：首屏 14/28 + 16px；小号 12/24 + 15.2px。 */
  /* 2026-09-24 配色 B：主按钮从 Eden 的白渐变换成朱砂。
     顶部留一道很淡的内高光、底部一层朱砂色投影，保留原来那种「浮起来」的质感。 */
  background: linear-gradient(to bottom, #CE4A33, var(--accent));
  color: var(--on-accent);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: var(--tracking-display);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255,248,240,.22),
    0 1px 1.5px rgba(0,0,0,.2),
    0 3px 6px -1px rgba(0,0,0,.24),
    0 10px 20px -8px rgba(200,69,46,.55);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out,
              background 0.2s ease-out;
}
.btn-pill:hover {
  background: linear-gradient(to bottom, #D2503A, #C4442D);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,248,240,.22),
    0 1px 2px rgba(0,0,0,.18),
    0 5px 10px -1px rgba(0,0,0,.26),
    0 14px 26px -8px rgba(200,69,46,.65);
}
.btn-pill:active { transform: translateY(0); }
.btn-pill .arrow { transition: transform 0.25s var(--ease); }
.btn-pill:hover .arrow { transform: translateX(3px); }

.btn-pill--sm { padding: 12px 24px; font-size: .95rem; }  /* [Eden 实测] 小号档 */

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* [Eden 实测] 次按钮不是全透明描边，是 5% 的白底 + 14% 的边 + 一层内高光。
     尺寸 10/24 + 15.2px。全透明描边在深底上会显得"空"。 */
  background: rgba(255,248,240,.05);
  color: var(--text-primary);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: var(--tracking-display);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,248,240,.14);
  box-shadow: inset 0 1px 0 rgba(255,248,240,.04);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: rgba(255,248,240,0.09);
}

/* ==========================================================================
   导航栏
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  /* [Eden 实测] 导航条是**常驻**半透明 + 背板模糊，不是滚动后才出现。
     背景 rgba(10,10,10,.72)，blur(20px) saturate(1.4)，下边框常在。
     原站那种"滚动才显形"的做法首屏会看不见分界，Eden 不这么做。 */
  background: rgba(14,12,10,0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(14,12,10,0.72);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  flex-shrink: 0;
}
/* 品牌标记：四格 + 一格。
   四个描边方格 = 四个并列方向；右下角填实并独立的一格 = 那个不一样的选择。
   用 currentColor，所以深底浅底、导航里页尾里都能直接用，不用做两套。
   28px 是它的最小可用尺寸 —— 再小描边就糊了。 */
.nav__logo-mark {
  width: 28px;
  height: 28px;
  flex: none;
  display: block;
  color: var(--text-primary);
}
.nav__logo-mark svg { width: 100%; height: 100%; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text-muted);
}
.nav__links a { transition: color 0.2s ease; }
.nav__links a:hover { color: var(--text-primary); }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__signin { font-size: 14px; color: var(--text-muted); transition: color 0.2s ease; }
.nav__signin:hover { color: var(--text-primary); }

/* 移动端汉堡菜单 */
.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 20px;
  border-top: 1px solid var(--border);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  padding: 12px 4px;
  font-size: 15px;
  color: var(--text-body);
}

@media (max-width: 780px) {
  .nav__links { display: none; }
  .nav__signin { display: none; }
  .nav__toggle { display: flex; }
  .nav:not(.is-scrolled) { background: rgba(14,12,10,0.6); }
}

/* ==========================================================================
   面包屑 —— 三层结构里让人随时知道自己在哪（第二、三层都用）
   ========================================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.breadcrumb a { transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb .sep { color: var(--text-faint); }
.breadcrumb .current { color: var(--text-body); }

/* ==========================================================================
   区块骨架
   ========================================================================== */
.section {
  /* [Eden 源码] 长正文章节 clamp(3.5rem, 7vw, 6rem) → 1440 下 96，390 下 56。
     原站是死的 104，窄屏会显得过空。 */
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: var(--nav-h);   /* 锚点跳转别被吸顶导航盖住 */
  position: relative;
  overflow: hidden;
}
/* [Eden 实测] 章节之间不是靠底色深浅交替断开的，是靠一条上边框
   加一层左上角的极淡径向光（rgba(255,255,255,.043)）。
   原站的 --bg-alt 交替底色保留着，两种手法叠加不冲突。 */
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 50% at 12% 0%, rgba(255,248,240,.043), transparent 65%);
}
.section > * { position: relative; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }

.section-header { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-header .lede { margin-top: 16px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}
/* 顶部光晕：纯黑背景最容易显得廉价，加一层极淡的光就立刻"贵"了 */
.hero::before {
  content: "";
  position: absolute;
  top: -380px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(255,248,240,0.07) 0%,
    rgba(255,248,240,0.03) 35%,
    transparent 70%
  );
  pointer-events: none;
}

.hero__title { max-width: 860px; }
.hero__lede { max-width: 640px; margin-top: 22px; }
.hero__cta-row {
  margin: 36px 0 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__sub { font-size: 14px; color: var(--text-muted); margin: 0; }

/* 结果条 */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.stat-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.stat-card__media {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-card-sm);
  background:
    linear-gradient(135deg, rgba(255,248,240,0.04), transparent),
    repeating-linear-gradient(135deg, #211D19, #211D19 10px, #1C1915 10px, #1C1915 20px);
  border: 1px dashed var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-faint);
  font-size: 12px;
  padding: 12px;
  margin-bottom: 16px;
}
.stat-card__headline {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 14px;
}
.stat-card__name { display: flex; align-items: center; gap: 10px; }

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3E3A33, #28241F);
  flex-shrink: 0;
}
.avatar--sm { width: 28px; height: 28px; }
.name-block strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
}
.name-block span { font-size: 12px; color: var(--text-muted); }

@media (max-width: 880px) {
  .stat-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   叙事段
   ========================================================================== */
.narrative { max-width: var(--container-w-narrow); }
.narrative .bullet-list { margin: 24px 0; }
.narrative .bullet-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 14px;
  color: var(--text-body);
}
.narrative .bullet-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-faint);
}
.narrative .bullet-list li strong { color: var(--text-primary); font-weight: 600; }

.closing-line {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-top: 36px;
}

/* ==========================================================================
   引言卡片
   ========================================================================== */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.quote-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.quote-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.quote-card p { font-size: 15px; color: var(--text-body); margin-bottom: 18px; }
.quote-card .name-block { display: flex; align-items: center; gap: 10px; }

@media (max-width: 880px) {
  .quote-grid { grid-template-columns: 1fr; }
}

/* 数据/图表占位（浅色卡片，深色页里做视觉断点） */
.chart-placeholder {
  background: #f4f4ef;
  color: #38332D;
  border-radius: var(--radius-card);
  padding: 22px;
  margin: 32px 0;
}
.chart-placeholder__box {
  aspect-ratio: 16 / 7;
  border: 1px dashed #c2c2ba;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8a82;
  font-size: 13px;
  margin-bottom: 12px;
  background: #fafaf7;
}
.chart-placeholder small { color: #86867e; font-size: 12px; }

/* ==========================================================================
   清单卡片（课程大纲 / 附加资产）
   ========================================================================== */
.checklist-cards { display: flex; flex-direction: column; gap: 12px; }
.checklist-card {
  display: flex;
  gap: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.checklist-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-elevated-2);
}
.checklist-card__icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-primary);
  font-size: 14px;
  margin-top: 2px;
}
.checklist-card__icon--badge {
  background: var(--bg-elevated-2);
  border-color: transparent;
  font-weight: 600;
}
.checklist-card h3 { margin-bottom: 7px; }
.checklist-card p { font-size: 14.5px; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ==========================================================================
   两栏勾选清单
   ========================================================================== */
.two-col-check {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.two-col-check li {
  padding-left: 26px;
  position: relative;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.65;
}
.two-col-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}
@media (max-width: 640px) { .two-col-check { grid-template-columns: 1fr; } }

/* ==========================================================================
   日程卡片
   ========================================================================== */
.schedule-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 28px 8px;
  margin-top: 24px;
}
.schedule-card__label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.schedule-row {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.schedule-row__week {
  width: 60px;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 2px;
}
.schedule-row__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.4;
}
.schedule-row__time { font-size: 13px; color: var(--text-muted); }
.schedule-card__footnote {
  padding: 20px 0 24px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 560px) {
  .schedule-row { flex-direction: column; gap: 6px; }
  .schedule-row__week { width: auto; }
}

/* ==========================================================================
   社群卡片
   ========================================================================== */
.community-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  margin-top: 16px;
}
.community-card h3 { margin-bottom: 10px; font-size: 19px; }
.community-card > p { font-size: 15px; color: var(--text-muted); }
.community-card ul { margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
.community-card li {
  padding-left: 26px;
  position: relative;
  font-size: 14.5px;
  color: var(--text-body);
}
.community-card li::before { content: "✓"; position: absolute; left: 0; color: var(--text-muted); }

/* ==========================================================================
   出路卡片
   ========================================================================== */
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.opportunity-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.opportunity-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.opportunity-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--text-primary);
}
.opportunity-card h3 { margin-bottom: 9px; }
.opportunity-card p { font-size: 14.5px; color: var(--text-muted); margin: 0; line-height: 1.7; }

@media (max-width: 880px) { .opportunity-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   学员见证
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.testimonial-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.testimonial-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 6px 13px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.stars { color: var(--accent); font-size: 12px; letter-spacing: 3px; margin-bottom: 12px; }
.testimonial-card p {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-card .name-block { margin-top: auto; display: flex; align-items: center; gap: 10px; }
.testimonial-card--hidden { display: none; }

.load-more-row { text-align: center; margin-top: 36px; }

@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   定价卡 —— 全页唯一有渐变描边的元素，视觉上"最重"
   ========================================================================== */
.pricing-card {
  max-width: 470px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  padding: 1px;                         /* 给渐变描边留位置 */
  background: linear-gradient(160deg, rgba(255,248,240,0.22), rgba(255,248,240,0.05) 45%, rgba(255,248,240,0.02));
}
.pricing-card__inner {
  background: var(--bg-elevated);
  border-radius: calc(var(--radius-card) - 1px);
  padding: 32px;
}
.pricing-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 26px;
}
.pricing-card__price strong {
  font-size: 40px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-card__price span { font-size: 14px; color: var(--text-muted); }
.pricing-card__price del { font-size: 15px; color: var(--text-faint); }

.pricing-card ul { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.pricing-card li {
  padding-left: 26px;
  position: relative;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.6;
}
.pricing-card li::before { content: "✓"; position: absolute; left: 0; color: var(--text-muted); }

.pricing-card__note {
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card-sm);
  padding: 16px 18px;
  margin-bottom: 22px;
}
.pricing-card__note .eyebrow { margin-bottom: 6px; font-size: 12px; }
.pricing-card__note strong { color: var(--text-primary); font-size: 14.5px; font-weight: 500; line-height: 1.6; }

.pricing-card .btn-pill { width: 100%; justify-content: center; }
.pricing-card__signin { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 16px; }
.pricing-card__signin strong { color: var(--text-body); font-weight: 500; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: var(--container-w-narrow); border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.faq-item__q:hover { color: #FFF8F0; }
.faq-item__q .plus {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s var(--ease), color 0.2s ease;
}
.faq-item.is-open .plus { transform: rotate(45deg); color: var(--text-primary); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item__a-inner {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 24px;
  max-width: 92%;
}

/* ==========================================================================
   收尾 CTA
   ========================================================================== */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta .lede { max-width: 580px; margin: 0 auto 34px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
  background: var(--bg-alt);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 52px;
}
.footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 22px; max-width: 260px; }
.footer__newsletter { display: flex; gap: 8px; max-width: 300px; }
.footer__newsletter input {
  flex: 1;
  min-width: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 11px 16px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}
.footer__newsletter input:focus { border-color: var(--border-strong); outline: none; }
.footer__newsletter input::placeholder { color: var(--text-faint); }
.footer__newsletter button {
  background: var(--text-primary);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease;
}
.footer__newsletter button:hover { background: #FFF8F0; }
.footer__col h4 {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 13.5px; color: var(--text-muted); transition: color 0.2s ease; }
.footer__col a:hover { color: var(--text-primary); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  font-size: 12.5px;
  color: var(--text-faint);
}

@media (max-width: 920px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

/* ==========================================================================
   滚动淡入
   ========================================================================== */
/* [Eden 移植] 参数逐条对齐参考页：
     位移 translateY(24px)（原站 18px）
     缓动 cubic-bezier(.22,.68,.35,1)（原站用的是通用 --ease）
     时长 .7s（一致）

   ⚠️ 顺带修一个隐患：原来 `.reveal{opacity:0}` 是**裸写**的，
   没有 .js 前缀。意味着只要 JS 没跑起来（报错、被拦、加载失败），
   整页内容全部停在 opacity:0 —— 页面在 DOM 里但什么都看不见，
   而且不报错，极难排查。Eden 的写法是把初始隐藏挂在 .js 下面，
   由脚本先给 html 加上 .js 再开始观察，没 JS 时内容直接可见。
   这里照 Eden 改。 */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.22, .68, .35, 1),
              transform 0.7s cubic-bezier(.22, .68, .35, 1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   响应式收口
   ========================================================================== */
@media (max-width: 780px) {
  .section { padding: 72px 0; }
  .hero { padding: 56px 0 48px; }
  .section-header { margin-bottom: 36px; }
  .lede { font-size: 17px; }
  blockquote { font-size: 17px; }
  .pricing-card__inner { padding: 26px 22px; }
  .two-col-check, .community-card { padding: 26px 22px; }
  .schedule-card { padding: 22px 22px 4px; }
}

/* ==========================================================================
   [Eden 移植] 收尾微调
   ========================================================================== */

/* Eden 的导航右侧只有文字链接，没有实心按钮；手机端只留 logo + 汉堡。
   原站在手机端同时显示了白色药丸按钮和汉堡菜单，两者指向同一个地方，
   而且白药丸在深色导航条上非常抢眼，把 logo 压住了。
   这里只在窄屏隐藏那颗按钮 —— 汉堡菜单里本来就有同一个入口，不丢功能。 */
@media (max-width: 1023px) {
  .nav__actions .btn-pill { display: none; }
}

/* [Eden 实测] 卡片边框比通用边框亮一档（.10 而不是 .08）。
   统一到这一档，卡片在深底上才"浮"得起来。 */
.product-map__svg-wrap .map-node,
.proj-card,
.hl-row,
.card {
  border-color: var(--border-card);
}
