@charset "UTF-8";

/* =====================================================
   设计令牌体系 (Design Tokens)
   基于 impeccable.style 审查修复：
   - P0: 去除渐变文字、发光强调、侧边条、monospace 滥用
   - P1: 精简毛玻璃、打破同质化卡片、去除多余边框、建立间距阶梯
   - P2: 微调纯黑背景色相、建立 type scale、控制行长
   ===================================================== */

:root {
  /* ---- 色彩 ---- */
  /* P2 修复: 纯黑背景 → 微量暖蓝灰偏移 */
  --bg-primary: #0c0d14;
  --bg-secondary: #14151e;
  --bg-card: rgba(255, 255, 255, 0.025);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --text-main: #e8e9ed;
  --text-muted: #8b8fa0;
  --text-dim: #5c6073;
  --accent: #d4952a;      /* 更沉稳的琥珀，避免过于饱和 */
  --accent-subtle: rgba(212, 149, 42, 0.12);
  --border: rgba(255, 255, 255, 0.06);
  --border-active: rgba(255, 255, 255, 0.14);
  --divider: rgba(255, 255, 255, 0.04);

  /* ---- 字体 ---- */
  --font-serif: 'Noto Serif SC', 'Source Han Serif SC', serif;
  --font-sans: 'Noto Sans SC', 'Source Han Sans SC', system-ui, sans-serif;

  /* ---- Type Scale (Major Third 1.25) ---- */
  /* P2 修复: 建立清晰的字号阶梯 */
  --text-xs: 0.8rem;      /* 12.8px */
  --text-sm: 0.9rem;      /* 14.4px */
  --text-base: 1rem;      /* 16px */
  --text-md: 1.125rem;    /* 18px */
  --text-lg: 1.25rem;     /* 20px */
  --text-xl: 1.563rem;    /* 25px */
  --text-2xl: 1.953rem;   /* 31.25px */
  --text-3xl: 2.441rem;   /* 39px */
  --text-hero: 4.5rem;    /* 72px */

  /* ---- 间距阶梯 (Spacing Scale) ---- */
  /* P1 修复: 建立 4-8-12-16-24-32-48-64 阶梯 */
  --space-1: 0.25rem;     /* 4px */
  --space-2: 0.5rem;      /* 8px */
  --space-3: 0.75rem;     /* 12px */
  --space-4: 1rem;        /* 16px */
  --space-6: 1.5rem;      /* 24px */
  --space-8: 2rem;        /* 32px */
  --space-12: 3rem;       /* 48px */
  --space-16: 4rem;       /* 64px */

  /* ---- 圆角 ---- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* ---- 动效 ---- */
  /* impeccable: 使用 expo/quart 减速曲线，禁止 bounce/elastic */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 180ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
}

[data-theme="light"] {
  --bg-primary: #f5f5f0;
  --bg-secondary: #ffffff;
  --bg-card: rgba(0, 0, 0, 0.025);
  --bg-card-hover: rgba(0, 0, 0, 0.05);
  --text-main: #1a1a2e;
  --text-muted: #52556a;
  --text-dim: #888a9a;
  --accent: #b37d1a;
  --accent-subtle: rgba(179, 125, 26, 0.08);
  --border: rgba(0, 0, 0, 0.06);
  --border-active: rgba(0, 0, 0, 0.14);
  --divider: rgba(0, 0, 0, 0.04);
}

/* =====================================================
   基础重置
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--duration-slow) var(--ease-out),
              color var(--duration-slow) var(--ease-out);
}

/* =====================================================
   环境背景 — 图谱结构性网格
   ===================================================== */
.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: 72px 72px;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 75%);
  opacity: 0.5;
}

.ambient-glow {
  position: fixed;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;   /* P1: 降低辉光强度 */
}
.ambient-glow-a {
  top: -25vh; left: -20vw;
  background: var(--accent);
}
.ambient-glow-b {
  bottom: -25vh; right: -20vw;
  background: #4a6cf7;
  opacity: 0.06;
}

/* =====================================================
   悬浮 UI 组件
   ===================================================== */

/* 主题切换 — P1: 去掉 backdrop-filter */
.theme-toggle {
  position: fixed;
  top: var(--space-6);
  right: var(--space-6);
  z-index: 100;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-md);
  transition: background var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}
.theme-toggle:hover {
  background: var(--bg-card-hover);
  transform: scale(1.06);
}

/* 导航圆点 */
.slide-nav {
  position: fixed;
  right: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
}
.nav-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
}
.nav-dot:hover {
  background: var(--text-muted);
  transform: scale(1.4);
}
/* P0 修复: 去掉 box-shadow glow，仅用颜色 + 尺寸变化 */
.nav-dot.active {
  background: var(--accent);
  width: 8px;
  height: 8px;
}

/* 页码提示 — P0: 仅此处保留 monospace（数据展示） */
.page-hint {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-family: 'SF Mono', 'Cascadia Code', monospace;
  font-size: var(--text-xs);
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.hint-arrows {
  display: flex;
  gap: var(--space-1);
}
.hint-arrow {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: var(--text-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast);
}
.hint-arrow:hover { background: var(--bg-card-hover); }

/* =====================================================
   幻灯片布局
   ===================================================== */
/* taste-skill 修复: 100vh → 100dvh 防 iOS Safari 地址栏跳动 */
.slide-deck {
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.slide-deck::-webkit-scrollbar { display: none; }

.slide {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100vw;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.slide-content {
  width: 100%;
  max-width: 1100px;
  padding: var(--space-8) var(--space-16);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.slide.in-view .slide-content {
  opacity: 1;
  transform: translateY(0);
}
/* taste-skill: Stagger 瀑布入场 —— 子元素递增延迟 */
.slide.in-view .slide-content > *:nth-child(1) { animation: stagger-in 0.6s var(--ease-out) 0ms both; }
.slide.in-view .slide-content > *:nth-child(2) { animation: stagger-in 0.6s var(--ease-out) 80ms both; }
.slide.in-view .slide-content > *:nth-child(3) { animation: stagger-in 0.6s var(--ease-out) 160ms both; }
.slide.in-view .slide-content > *:nth-child(4) { animation: stagger-in 0.6s var(--ease-out) 240ms both; }
.slide.in-view .slide-content > *:nth-child(5) { animation: stagger-in 0.6s var(--ease-out) 320ms both; }
.slide.in-view .slide-content > *:nth-child(6) { animation: stagger-in 0.6s var(--ease-out) 400ms both; }
@keyframes stagger-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   封面页 (Hero)
   ===================================================== */
/* taste-skill Rule 3: ANTI-CENTER BIAS — VARIANCE=8 时禁止居中 Hero */
.slide-hero .slide-content {
  text-align: left;
  max-width: 900px;
  padding-left: var(--space-16);
}
.slide-hero { justify-content: flex-start; }

.course-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-6);
  border-radius: 100px;
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-12);
  /* P1: 去掉 backdrop-filter 和 border */
}

/* P0 修复: 纯色标题，去掉 gradient text */
.hero-title {
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 300;
  letter-spacing: 0.4em;
  margin-left: 0.2em;
  margin-bottom: var(--space-6);
  color: var(--text-main);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-main);
  margin-bottom: var(--space-4);
  font-weight: 300;
  max-width: 50ch;
}
.hero-desc {
  font-size: var(--text-md);
  color: var(--text-muted);
  max-width: 45ch;
  line-height: 1.8;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-12);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-dim);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  opacity: 0.5;
  animation: float 3s infinite ease-in-out;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
.scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
}

/* =====================================================
   通用 Slide 标题 — P2: Type Scale 修复
   ===================================================== */
.slide-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--text-main);
  line-height: 1.3;
}
.slide-subtitle {
  font-size: var(--text-md);
  color: var(--text-muted);
  margin-bottom: var(--space-12);
  max-width: 60ch;   /* P2: 行长 */
}
.slide-subtitle-desc {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 65ch;   /* P2: 行长 */
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

/* =====================================================
   时间线网格 — P1: 打破同质化，引入节奏差异
   ===================================================== */
/* taste-skill: 非对称网格 2fr 1fr 1fr，去卡片化改分隔线 */
.timeline-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  margin-top: var(--space-6);
}
.tl-card {
  padding: var(--space-6) var(--space-6) var(--space-8);
  border-top: 1px solid var(--border);
  transition: background var(--duration-fast) var(--ease-out);
}
.tl-card:hover {
  background: var(--bg-card-hover);
}
/* taste-skill: :active 触觉反馈 */
.tl-card:active {
  transform: scale(0.98);
}
.tl-num {
  font-family: var(--font-sans);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-4);
  opacity: 0.7;
}
.tl-body strong {
  display: block;
  font-size: var(--text-md);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-main);
}
.tl-body p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* =====================================================
   问答卡片 — P0/P1: 去掉侧边条，改为底部装饰
   ===================================================== */
/* taste-skill: 禁止三列等宽，改为两列锯齿 */
.question-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.question-cards .q-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 60%;
}
.q-card {
  padding: var(--space-8) var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration-fast),
              background var(--duration-fast);
}
/* P0 修复: 去掉 ::before 侧边条 → 改为底部细线 */
.q-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: var(--space-6); right: var(--space-6);
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--duration-fast);
}
.q-card:hover { border-color: var(--border-active); }
.q-card:hover::after { opacity: 0.5; }
/* taste-skill: :active 触觉反馈 */
.q-card:active { transform: scale(0.98); }

/* P0: 编号标签改用 sans weight 差异代替 monospace */
.q-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-3);
  letter-spacing: 0.05em;
}
.q-card p {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.8;
  max-width: 45ch;   /* P2: 卡片内行长 */
}

/* =====================================================
   讨论段落 — P1: dq-item 去掉边框，改用间距分组
   ===================================================== */
.discuss-header {
  margin-bottom: var(--space-8);
}
/* P0: 段落标签改用 sans + font-weight，移除 monospace */
.discuss-round {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--accent);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-2);
}

.discuss-questions {
  display: flex;
  flex-direction: column;
  gap: 0;   /* P1: 去掉 gap，用 border-bottom 分割 */
  margin-bottom: var(--space-8);
}
/* P1 修复: 去掉背景和边框，改用分割线 */
.dq-item {
  display: flex;
  align-items: center;
  padding: var(--space-4) var(--space-4);
  border-bottom: 1px solid var(--divider);
  transition: background var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  cursor: pointer;
}
.dq-item:last-child { border-bottom: none; }
.dq-item:hover {
  background: var(--bg-card-hover);
}
.dq-item:active {
  transform: scale(0.98);
}
/* P0: 编号用 serif 做差异化 */
.dq-num {
  font-size: var(--text-lg);
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--accent);
  margin-right: var(--space-6);
  flex-shrink: 0;
  opacity: 0.6;
  min-width: 2.5rem;
}
.dq-item p {
  font-size: var(--text-base);
  flex-grow: 1;
  line-height: 1.7;
  max-width: 65ch;   /* P2 */
}
.ref-btn {
  background: none;
  border: none;
  font-size: var(--text-lg);
  cursor: pointer;
  padding: var(--space-2);
  border-radius: 50%;
  transition: transform var(--duration-fast),
              background var(--duration-fast);
  flex-shrink: 0;
}
.dq-item:hover .ref-btn {
  background: var(--accent-subtle);
  transform: scale(1.1);
}

/* 展开原文按钮 */
.open-text-btn {
  padding: var(--space-3) var(--space-6);
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--duration-fast);
}
.open-text-btn:hover {
  background: var(--text-main);
  color: var(--bg-primary);
  border-color: var(--text-main);
}
.open-text-btn:active {
  transform: scale(0.96);
}

/* =====================================================
   Modal (灯泡辅助弹窗)
   ===================================================== */
.modal-shell, .reader-panel {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-shell[hidden] {
  display: none !important;
}

/* P1: 仅此处保留 backdrop-filter — 这是真实的层叠遮挡场景 */
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.modal {
  position: relative;
  width: 90vw;
  max-width: 960px;
  max-height: 85vh;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* taste-skill: 色调化阴影（Tinted Shadow）*/
  box-shadow: 0 24px 48px -12px rgba(12, 13, 20, 0.5);
  animation: modal-in var(--duration-normal) var(--ease-out);
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.96) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal__header {
  padding: var(--space-8) var(--space-8) var(--space-6);
  border-bottom: 1px solid var(--divider);
}
/* P0: eyebrow 改用 sans font-weight 而非 monospace */
.modal__eyebrow {
  color: var(--accent);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.modal__header h2 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  margin: var(--space-2) 0;
  line-height: 1.4;
  max-width: 65ch;
}
.modal__header p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  max-width: 65ch;
  line-height: 1.6;
}

.modal__content {
  padding: var(--space-6) var(--space-8);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.modal__content::-webkit-scrollbar { width: 6px; }
.modal__content::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.modal-block h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

/* 指导卡片 — P0 修复: 去掉 border-left 侧边条，改为步骤编号 */
.guide-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.guide-card {
  padding: var(--space-4) var(--space-4);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  /* 去掉 border-left */
}
.guide-card h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.guide-card p {
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 65ch;
}

/* 两列布局 */
.modal-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.insight-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.insight-card {
  padding: var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration-fast);
}
.insight-card:hover { border-color: var(--border-active); }
.insight-card h4 {
  color: var(--text-main);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
}
.insight-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 55ch;
}

.modal-related-block {
  padding-top: var(--space-4);
  border-top: 1px solid var(--divider);
}
.modal-list {
  padding-left: var(--space-6);
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.9;
}

.modal__close, .panel-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  z-index: 10;
  transition: background var(--duration-fast),
              color var(--duration-fast);
}
.modal__close:hover, .panel-close:hover {
  background: var(--bg-card-hover);
  color: var(--text-main);
}
.modal__close:active, .panel-close:active {
  transform: scale(0.9);
}

/* =====================================================
   原文阅读面板
   ===================================================== */
.reader-panel {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}
.reader-panel.open {
  opacity: 1;
  pointer-events: auto;
}
.panel-body {
  width: 90vw;
  max-width: 720px;
  max-height: 85vh;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-8);
  overflow-y: auto;
}
.panel-body h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--divider);
  padding-bottom: var(--space-4);
}
.reading-paragraph {
  font-size: var(--text-md);
  line-height: 2;
  margin-bottom: var(--space-6);
  color: var(--text-muted);
  max-width: 65ch;   /* P2: 行长控制 */
}
.reading-paragraph:first-letter {
  font-size: 1.4em;
  color: var(--text-main);
  font-weight: 500;
}

/* =====================================================
   prefers-reduced-motion — impeccable 必选项
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =====================================================
   响应式 — 移动端适配
   ===================================================== */
@media (max-width: 1000px) {
  .slide-content {
    padding: var(--space-6) var(--space-4);
  }
  .hero-title {
    font-size: 3rem;
    letter-spacing: 0.25em;
  }
  .timeline-grid,
  .question-cards,
  .modal-two-col {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .modal {
    width: 95vw;
    max-height: 90vh;
  }
  .modal__header {
    padding: var(--space-4) var(--space-4) var(--space-3);
  }
  .modal__content {
    padding: var(--space-4);
  }
  .panel-body {
    padding: var(--space-6) var(--space-4);
    width: 95vw;
  }
  .slide-nav {
    display: none;  /* 移动端隐藏侧边导航点 */
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
  }
  .slide-title {
    font-size: var(--text-xl);
  }
  .tl-card, .q-card {
    padding: var(--space-4);
  }
}
