/* ============================================================
   钱醒认知智库 (QianXing Think Tank)
   核心设计系统 - Core Design System v2.0
   风格：暗调极简轻奢 | 炭黑+米咖低饱和色系
   ============================================================ */

/* ========== 第一章：CSS 变量体系 ========== */
:root {
  /* --- 背景色阶 --- */
  --bg-primary: #1C1A18;
  --bg-secondary: #252320;
  --bg-tertiary: #2E2B27;
  --bg-quaternary: #35312C;
  --bg-input: #1A1815;
  --bg-overlay: rgba(12, 11, 10, 0.85);
  --bg-hero-gradient: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(196, 168, 130, 0.06) 0%, rgba(28, 26, 24, 0) 70%);

  /* --- 边框 --- */
  --border-default: #4A3F35;
  --border-hover: #6B5C4E;
  --border-focus: #C4A882;
  --border-subtle: rgba(74, 63, 53, 0.4);
  --border-card: rgba(74, 63, 53, 0.55);

  /* --- 文字色彩 --- */
  --text-primary: #D4C5A9;
  --text-secondary: #8C7B65;
  --text-muted: #5C4F42;
  --text-inverse: #1C1A18;

  /* --- 品牌强调色 --- */
  --accent-gold: #C4A882;
  --accent-gold-light: #D4B896;
  --accent-gold-dark: #A08B6E;
  --accent-gold-glow: rgba(196, 168, 130, 0.12);
  --accent-gold-border: rgba(196, 168, 130, 0.25);

  /* --- 功能色（低饱和度） --- */
  --color-success: #6B9E7A;
  --color-success-bg: rgba(107, 158, 122, 0.1);
  --color-danger: #C47B6A;
  --color-danger-bg: rgba(196, 123, 106, 0.1);
  --color-warning: #C4A06A;
  --color-warning-bg: rgba(196, 160, 106, 0.1);
  --color-info: #7A95A8;
  --color-info-bg: rgba(122, 149, 168, 0.1);

  /* --- 字体体系 --- */
  --font-cn: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  --font-en: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "SF Mono", "Cascadia Code", "Consolas", "Courier New", monospace;
  --font-serif: "Noto Serif SC", "STSong", "SimSun", Georgia, serif;

  /* --- 字号阶梯 --- */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.8125rem;  /* 13px */
  --text-base: 0.9375rem; /* 15px */
  --text-md: 1rem;       /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */
  --text-6xl: 3.75rem;   /* 60px */

  /* --- 行高 --- */
  --leading-tight: 1.25;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;
  --leading-loose: 1.9;

  /* --- 字重 --- */
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* --- 圆角 --- */
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* --- 间距系统 (4px base) --- */
  --sp-1: 0.25rem;   /* 4px */
  --sp-2: 0.5rem;    /* 8px */
  --sp-3: 0.75rem;   /* 12px */
  --sp-4: 1rem;      /* 16px */
  --sp-5: 1.25rem;   /* 20px */
  --sp-6: 1.5rem;    /* 24px */
  --sp-8: 2rem;      /* 32px */
  --sp-10: 2.5rem;   /* 40px */
  --sp-12: 3rem;     /* 48px */
  --sp-16: 4rem;     /* 64px */
  --sp-20: 5rem;     /* 80px */
  --sp-24: 6rem;     /* 96px */
  --sp-32: 8rem;     /* 128px */

  /* --- 阴影 --- */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 20px rgba(196, 168, 130, 0.08);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.35);

  /* --- 过渡 --- */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* --- 容器 --- */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --navbar-height: 64px;
  --mobile-nav-height: 56px;

  /* --- Z-Index --- */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-navbar: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-toast: 600;
}

/* ========== 第一章附：浅色主题（E1：浅/深切换，由 body[data-theme="light"] 控制） ========== */
body[data-theme="light"] {
  --bg-primary: #F7F4EF;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #EFEAE2;
  --bg-quaternary: #E6DFD4;
  --bg-input: #FFFFFF;
  --bg-overlay: rgba(247,244,239,0.92);
  --bg-hero-gradient: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(154,123,79,0.07) 0%, rgba(247,244,239,0) 70%);
  --border-default: #DDD3C4;
  --border-hover: #C4A882;
  --border-focus: #C4A882;
  --border-subtle: rgba(74,63,53,0.15);
  --border-card: rgba(74,63,53,0.2);
  --text-primary: #2A2620;
  --text-secondary: #6B5F4E;
  --text-muted: #9A8C77;
  --text-inverse: #F7F4EF;
  --accent-gold: #9A7B4F;
  --accent-gold-light: #B8915E;
  --accent-gold-dark: #7A5F3C;
  --accent-gold-glow: rgba(154,123,79,0.14);
  --accent-gold-border: rgba(154,123,79,0.3);
  --color-success: #2E7D4F;
  --color-danger: #B5503A;
  --color-warning: #B5862F;
  --color-info: #4A6E85;
  background: var(--bg-primary);
  color: var(--text-primary);
}
body[data-theme="light"] .mobile-menu { background: var(--bg-secondary); }
body[data-theme="light"] .mobile-drawer { background: var(--bg-secondary); }

/* ========== 第二章：Reset & 基础样式 ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-cn);
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* 自定义滚动条 */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: var(--border-default);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }

/* 选区样式 */
::selection {
  background: rgba(196, 168, 130, 0.25);
  color: var(--text-primary);
}

/* 链接重置 */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--accent-gold); }

/* 图片 */
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 列表 */
ul, ol { list-style: none; }

/* 表单基础 */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* 标题重置 */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
}

/* HR */
hr {
  border: none;
  height: 1px;
  background: var(--border-subtle);
}

/* ========== 第三章：容器与布局 ========== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* Flex 工具 */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: var(--sp-1); }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }
.gap-12 { gap: var(--sp-12); }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ========== 第四章：排版系统 ========== */

/* 标题层级 */
.heading-xl {
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: -0.015em;
}

.heading-md {
  font-size: var(--text-3xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  letter-spacing: -0.01em;
}

.heading-sm {
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
}

.heading-xs {
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  line-height: var(--leading-snug);
}

/* 分区标题组件 */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
  padding-top: var(--sp-16);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: var(--sp-4);
  padding: var(--sp-1) var(--sp-4);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: var(--text-md);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

/* 正文排版 */
.article-body {
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: var(--text-primary);
}

.article-body p {
  margin-bottom: var(--sp-6);
  text-indent: 2em;
}

.article-body p:first-child {
  text-indent: 0;
}

.article-body h2 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin: var(--sp-10) 0 var(--sp-4);
  color: var(--text-primary);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border-subtle);
}

.article-body h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin: var(--sp-8) 0 var(--sp-3);
  color: var(--accent-gold-light);
}

.article-body blockquote {
  margin: var(--sp-8) 0;
  padding: var(--sp-6) var(--sp-8);
  border-left: 3px solid var(--accent-gold);
  background: var(--bg-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.article-body ul, .article-body ol {
  margin: var(--sp-4) 0;
  padding-left: var(--sp-8);
}

.article-body li {
  margin-bottom: var(--sp-2);
  position: relative;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: -1.25rem;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.article-body strong {
  color: var(--accent-gold-light);
  font-weight: var(--weight-semibold);
}

.article-body em {
  color: var(--text-secondary);
}

/* 文字颜色工具 */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--accent-gold); }
.text-success { color: var(--color-success); }
.text-danger { color: var(--color-danger); }
.text-warning { color: var(--color-warning); }

/* 字号工具 */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-md { font-size: var(--text-md); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ========== 第五章：导航栏 ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: var(--z-navbar);
  background: rgba(28, 26, 24, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  border-bottom-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
  background: rgba(28, 26, 24, 0.95);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  letter-spacing: 0;
}

/* 导航链接 */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  position: relative;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  color: var(--accent-gold);
  background: var(--accent-gold-glow);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: var(--radius-full);
}

/* 右侧操作区 */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav-btn {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  background: transparent;
}

.nav-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.nav-btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  font-weight: var(--weight-semibold);
}

.nav-btn-primary:hover {
  background: var(--accent-gold-light);
  color: var(--bg-primary);
}

/* 汉堡菜单 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* 移动端菜单 */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: calc(var(--z-navbar) - 1);
  padding: var(--sp-6);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: all var(--transition-normal);
  pointer-events: none;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu .nav-link {
  display: block;
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--text-md);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-1);
}

.mobile-menu-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: var(--sp-4) 0;
}

/* ========== 第六章：Hero 区域 ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-24) var(--sp-6);
  overflow: hidden;
  background: var(--bg-hero-gradient);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 168, 130, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-4);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--accent-gold);
  margin-bottom: var(--sp-8);
  letter-spacing: 0.06em;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
  max-width: 720px;
  animation: fadeInUp 0.8s 0.15s ease-out both;
}

.hero-title .gold {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto var(--sp-10);
  line-height: var(--leading-relaxed);
  animation: fadeInUp 0.8s 0.3s ease-out both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s ease-out both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-weight: var(--weight-semibold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(196, 168, 130, 0.15);
}

.btn-outline {
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

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

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.btn-lg {
  padding: var(--sp-4) var(--sp-10);
  font-size: var(--text-md);
}

.btn-sm {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-xs);
}

/* 滚动提示 */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--text-muted);
  font-size: var(--text-xs);
  animation: fadeInUp 1s 1s ease-out both, float 3s ease-in-out 1.5s infinite;
}

.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
}

/* ========== 第七章：卡片系统 ========== */

/* 基础卡片 */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  transition: all var(--transition-normal);
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

/* 特色卡片 - 带顶部强调线 */
.card-accent {
  composes: card;
  border-top: 2px solid var(--accent-gold);
}

/* 文章卡片 */
.card-article {
  composes: card;
  cursor: pointer;
}

.card-article:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold-border);
}

.card-article-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.card-article-tag {
  padding: 2px var(--sp-2);
  background: var(--accent-gold-glow);
  color: var(--accent-gold);
  border-radius: var(--radius-xs);
  font-size: var(--text-xs);
}

.card-article-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}

.card-article-excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-subtle);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* 功能卡片 */
.card-feature {
  composes: card;
  text-align: left;
  padding: var(--sp-8);
}

.card-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--accent-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: var(--text-xl);
  color: var(--accent-gold);
}

.card-feature-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--sp-2);
}

.card-feature-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* 统计卡片 */
.card-stat {
  composes: card;
  text-align: center;
  padding: var(--sp-6);
}

.card-stat-value {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--accent-gold);
  margin-bottom: var(--sp-1);
  font-family: var(--font-en);
}

.card-stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* ========== 第八章：分区布局 ========== */
.section {
  padding: var(--sp-16) 0;
  position: relative;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-divider {
  height: 1px;
  background: var(--border-subtle);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* 文章列表 */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--sp-6);
}

/* 三栏卡片网格 */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

/* 两栏 */
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

/* ========== 第九章：社区组件 ========== */

/* 帖子卡片 */
.post-card {
  composes: card;
  padding: var(--sp-6);
}

.post-card-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.post-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-quaternary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  flex-shrink: 0;
}

.post-author {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.post-time {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.post-title {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--sp-2);
  line-height: var(--leading-snug);
}

.post-content {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--sp-4);
}

.post-tags {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}

.post-tag {
  padding: 2px var(--sp-3);
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
}

.post-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-subtle);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.post-action {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
}

.post-action:hover { color: var(--accent-gold); }
.post-action.liked { color: var(--accent-gold); }

/* 社区版块Tab */
.community-tabs {
  display: flex;
  gap: var(--sp-1);
  margin-bottom: var(--sp-8);
  padding: var(--sp-1);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.community-tabs::-webkit-scrollbar { display: none; }

.community-tab {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: all var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
}

.community-tab:hover { color: var(--text-primary); }

.community-tab.active {
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-weight: var(--weight-semibold);
}

/* ========== 第十章：Footer ========== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-top: var(--sp-4);
  max-width: 280px;
}

.footer-col-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--sp-5);
  color: var(--text-primary);
}

.footer-link {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-3);
  transition: color var(--transition-fast);
}

.footer-link:hover { color: var(--accent-gold); }

.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ========== 第十一章：表单 ========== */
.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  margin-bottom: var(--sp-2);
}

.form-input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-gold-glow);
}

.form-input::placeholder { color: var(--text-muted); }

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* ========== 第十二章：侧边栏 ========== */
.sidebar {
  position: sticky;
  top: calc(var(--navbar-height) + var(--sp-6));
}

.sidebar-card {
  composes: card;
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.sidebar-card-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.sidebar-tag {
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.sidebar-tag:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* 热门文章列表 */
.hot-article-item {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.hot-article-item:last-child { border-bottom: none; }

.hot-article-rank {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--accent-gold);
  font-family: var(--font-en);
  width: 28px;
  flex-shrink: 0;
}

.hot-article-info { flex: 1; min-width: 0; }

.hot-article-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  line-height: var(--leading-snug);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hot-article-meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--sp-1);
}

/* ========== 第十三章：面包屑 ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
  padding: var(--sp-3) 0;
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent-gold); }
.breadcrumb-sep { color: var(--text-muted); }
.breadcrumb-current { color: var(--accent-gold); }

/* ========== 第十四章：模态框 ========== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  z-index: var(--z-modal-backdrop);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  max-width: 480px;
  width: 100%;
  transform: translateY(16px);
  transition: transform var(--transition-normal);
}

.modal-backdrop.open .modal {
  transform: translateY(0);
}

.modal-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--sp-6);
}

/* ========== 第十五章：Toast通知 ========== */
.toast-container {
  position: fixed;
  top: calc(var(--navbar-height) + var(--sp-4));
  right: var(--sp-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.toast {
  padding: var(--sp-3) var(--sp-5);
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  animation: toastIn 0.3s ease-out;
  max-width: 360px;
}

.toast-success { border-color: var(--color-success); }
.toast-error { border-color: var(--color-danger); }

/* ========== 第十六章：互动组件 ========== */

/* 评论区 */
.comment-section {
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-subtle);
}

.comment-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--sp-6);
}

.comment-form {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.comment-input {
  flex: 1;
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
}

.comment-input:focus {
  border-color: var(--border-focus);
}

.comment-submit {
  padding: var(--sp-3) var(--sp-6);
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  transition: all var(--transition-fast);
}

.comment-submit:hover { background: var(--accent-gold-light); }

.comment-item {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border-subtle);
}

/* 互动话题 */
.engagement-box {
  margin-top: var(--sp-8);
  padding: var(--sp-6);
  background: var(--accent-gold-glow);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-lg);
}

.engagement-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--accent-gold);
  margin-bottom: var(--sp-2);
}

.engagement-text {
  font-size: var(--text-md);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
}

/* ========== 第十七章：分页 ========== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-10);
}

.page-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.page-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.page-btn.active {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  font-weight: var(--weight-semibold);
}

.page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ========== 第十八章：知识库组件 ========== */

/* 搜索栏 */
.search-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
  transition: border-color var(--transition-fast);
}

.search-bar:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-gold-glow);
}

.search-input {
  flex: 1;
  padding: var(--sp-3) var(--sp-5);
  background: transparent;
  color: var(--text-primary);
  font-size: var(--text-sm);
}

.search-input::placeholder { color: var(--text-muted); }

.search-btn {
  padding: var(--sp-3) var(--sp-6);
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  transition: background var(--transition-fast);
}

.search-btn:hover { background: var(--accent-gold-light); }

/* 分类筛选 */
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.filter-chip {
  padding: var(--sp-1) var(--sp-4);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-chip:hover { border-color: var(--border-hover); }

.filter-chip.active {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

/* ========== 第十九章：会员中心组件 ========== */
.profile-header {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-8);
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  margin-bottom: var(--sp-8);
}

.profile-avatar-lg {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--accent-gold-glow);
  border: 2px solid var(--accent-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  color: var(--accent-gold);
  flex-shrink: 0;
}

.profile-name {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--sp-1);
}

.profile-meta {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.member-menu {
  composes: card;
  padding: 0;
  overflow: hidden;
}

.member-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--text-sm);
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-fast);
  cursor: pointer;
}

.member-menu-item:last-child { border-bottom: none; }
.member-menu-item:hover { background: var(--bg-tertiary); }

.member-menu-item-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--sp-3);
  font-size: var(--text-base);
}

/* ========== 第二十章：加载与占位 ========== */
.skeleton {
  background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

.skeleton-text { height: 14px; margin-bottom: var(--sp-2); }
.skeleton-title { height: 24px; width: 60%; margin-bottom: var(--sp-4); }
.skeleton-card { height: 200px; }

/* 空状态 */
.empty-state {
  text-align: center;
  padding: var(--sp-16) var(--sp-6);
}

.empty-state-icon {
  font-size: var(--text-5xl);
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}

.empty-state-title {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--sp-2);
}

.empty-state-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ========== 第二十一章：动画关键帧 ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 滚动渐显 */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== 第二十二章：响应式 - 平板 (768-1024px) ========== */
@media (max-width: 1024px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.625rem;
    --navbar-height: 60px;
  }

  .container, .container-narrow, .container-wide {
    padding: 0 var(--sp-4);
  }

  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-2 { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .hero-title { font-size: var(--text-4xl); }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
}

/* ========== 第二十三章：响应式 - 手机 (< 768px) ========== */
@media (max-width: 768px) {
  :root {
    --text-6xl: 2rem;
    --text-5xl: 1.875rem;
    --text-4xl: 1.625rem;
    --text-3xl: 1.375rem;
    --text-2xl: 1.25rem;
    --text-xl: 1.125rem;
    --navbar-height: 56px;
    --sp-16: 2.5rem;
    --sp-12: 2rem;
    --sp-8: 1.5rem;
  }

  .container, .container-narrow, .container-wide {
    padding: 0 var(--sp-4);
  }

  .section { padding: var(--sp-10) 0; }

  .hero {
    min-height: 90vh;
    padding: var(--sp-16) var(--sp-4);
  }

  .hero-title {
    font-size: var(--text-4xl);
    max-width: 100%;
  }

  .hero-subtitle { font-size: var(--text-base); }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .card { padding: var(--sp-5); }

  .card-grid-3 { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-2);
    text-align: center;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .section-header {
    margin-bottom: var(--sp-8);
    padding-top: var(--sp-8);
  }

  .section-title { font-size: var(--text-2xl); }

  /* 移动端导航 */
  .nav-logo span { display: none; }
  .nav-logo-icon { width: 32px; height: 32px; font-size: var(--text-lg); }
  .nav-actions .nav-btn:not(.nav-btn-primary) { display: none; }

  /* 移动端文章 */
  .article-body { font-size: var(--text-base); }
  .article-body p { text-indent: 1.5em; margin-bottom: var(--sp-4); }

  /* 评论区 */
  .comment-form { flex-direction: column; }

  /* 搜索 */
  .search-bar { max-width: 100%; }

  /* 面包屑 */
  .breadcrumb { font-size: 11px; overflow-x: auto; white-space: nowrap; -ms-overflow-style: none; scrollbar-width: none; }
  .breadcrumb::-webkit-scrollbar { display: none; }
}

/* ========== 第二十四章：打印样式 ========== */
@media print {
  .navbar, .footer, .mobile-menu, .hamburger, .comment-form { display: none !important; }
  body { background: white; color: black; }
  .article-body { font-size: 12pt; line-height: 1.8; }
}

/* ========== 第二十五章：无障碍 ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.focus-visible:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ===== v13 首页模块/导航增强 ===== */
.m-entry-sub { font-size:.72rem; color:var(--text-muted); margin-top:2px; font-weight:400; line-height:1.3; }
.m-today-item { text-decoration:none; color:inherit; display:flex; flex-direction:column; }
.m-today-item:active { opacity:.7; }
.m-fab { position:fixed; right:16px; bottom:84px; z-index:400; width:54px; height:54px; border-radius:50%; background:var(--accent-gold); color:#1C1A18; border:none; font-size:1.7rem; font-weight:700; box-shadow:var(--shadow-md); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:transform .15s; }
.m-fab:active { transform:scale(.93); }
