/* =============================================================
   轩能医疗科技 xuanmed — Design System
   高端医疗科技风格 · 深色优先双主题（深 / 浅）
   字体：Sora / Manrope / JetBrains Mono + Noto Sans SC
   ============================================================= */

/* ---------- 1. 设计 Token（深色为默认） ---------- */
:root {
  /* 画布 / 表面 */
  --ink: #0E1B23;            /* 墨青近黑，非纯黑 */
  --ink-deep: #081319;       /* 更深墨青带（页脚） */
  --surface: #142532;        /* 卡片 / 分区 */
  --raised: #1B2E3D;         /* hover / 弹层 */

  /* 边框（0.5px 细线即极低透明度） */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* 文字 */
  --text: #EAF1F4;
  --muted: #9FB2BC;

  /* 强调色（全站至多一个饱和色） */
  --jade: #19B8A3;           /* 品牌主色 */
  --jade-deep: #0E9E8E;      /* 文字压在 jade 上的墨青 */
  --on-jade: #FFFFFF;        /* 压在 jade 按钮上的白色文字（按钮底色已加深为 --jade-btn 以保证对比度） */
  --jade-soft: rgba(25, 184, 163, 0.12);
  --jade-line: rgba(25, 184, 163, 0.4);
  --jade-btn: #0A6E63;        /* 实底绿按钮底色（深青，白字对比度 ≈5.9:1，达 WCAG AA） */
  --jade-btn-hover: #085A51;  /* 按钮 hover 态 */

  /* 暖点缀（仅「人」相关温暖场景 / 个别高亮） */
  --amber: #E8A24A;
  --amber-soft: rgba(232, 162, 74, 0.12);

  /* 危险 / 错误 */
  --danger: #E2594B;
  --danger-soft: rgba(226, 89, 75, 0.12);

  /* 玻璃导航 */
  --glass: rgba(14, 27, 35, 0.72);
  --glass-scrolled: rgba(14, 27, 35, 0.92);

  /* 阴影 */
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.30);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.42);

  /* 字体 */
  --font-display: 'Sora', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Manrope', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* 圆角 */
  --r-xs: 8px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* 动效 */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.15s;
  --dur: 0.3s;
  --dur-slow: 0.5s;

  --max-width: 1280px;
  color-scheme: dark;

  /* 兼容旧模板中残留的变量引用（映射到新 token，避免破版） */
  --primary: var(--jade);
  --primary-dark: var(--jade-deep);
  --navy: var(--ink);
  --navy-light: var(--raised);
  --navy-dark: var(--ink-deep);
  --accent: var(--jade);
  --accent-light: var(--jade);
  --text-light: var(--muted);
  --text-muted: var(--muted);
  --bg: var(--ink);
  --bg-alt: var(--surface);
  --bg-dark: var(--ink);
}

/* ---------- 浅色主题 ---------- */
[data-theme="light"] {
  --ink: #F6F8F9;
  --ink-deep: #E9EEF1;
  --surface: #FFFFFF;
  --raised: #FFFFFF;

  --border: rgba(14, 27, 35, 0.10);
  --border-strong: rgba(14, 27, 35, 0.16);

  --text: #0E1B23;
  --muted: #4A5A62;

  --jade: #0E9E8E;
  --jade-deep: #0B7E71;
  --jade-soft: rgba(14, 158, 142, 0.10);
  --jade-line: rgba(14, 158, 142, 0.35);
  --jade-btn: #0A6E63;
  --jade-btn-hover: #085A51;

  --amber: #C9822F;
  --amber-soft: rgba(201, 130, 47, 0.12);

  --danger: #A32D2D;
  --danger-soft: rgba(163, 45, 45, 0.10);

  --glass: rgba(246, 248, 249, 0.78);
  --glass-scrolled: rgba(246, 248, 249, 0.94);

  --shadow: 0 4px 24px rgba(14, 27, 35, 0.08);
  --shadow-lg: 0 18px 50px rgba(14, 27, 35, 0.14);

  color-scheme: light;
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.04; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { max-width: 65ch; }

a { color: var(--jade); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--jade-deep); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--jade-soft); color: var(--text); }

:focus-visible { outline: 2px solid var(--jade); outline-offset: 3px; border-radius: 4px; }

/* ---------- 3. 布局工具类 ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-alt { background: var(--surface); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--jade-line);
}
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.line {
  width: 48px; height: 3px; border-radius: 2px; background: var(--jade);
  margin-top: 18px;
}
.section-head.center .line { margin-left: auto; margin-right: auto; }

/* 旧模板 section-title（列表/详情页沿用） */
.section-title { text-align: left; margin-bottom: 48px; }
.section-title h2 { font-family: var(--font-display); font-weight: 500; color: var(--text); margin-bottom: 8px; }
.section-title p {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--jade); margin-bottom: 14px;
}
.section-title .line { width: 48px; height: 3px; background: var(--jade); border-radius: 2px; margin-top: 14px; }

.lead { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }

/* ---------- 4. 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 500;
  padding: 13px 26px; border-radius: var(--r-sm); border: 1px solid transparent;
  cursor: pointer; user-select: none; white-space: nowrap;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--jade-btn); color: var(--on-jade); }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 30px rgba(10, 110, 99, 0.30); background: var(--jade-btn-hover); color: var(--on-jade); }
.btn-secondary { background: transparent; color: var(--jade); border-color: var(--jade-line); }
.btn-secondary:hover { border-color: var(--jade); background: var(--jade-soft); }
.btn-ghost { background: transparent; color: var(--text); padding-left: 6px; padding-right: 6px; }
.btn-ghost .arrow { transition: transform var(--dur) var(--ease); }
.btn-ghost:hover { color: var(--jade); }
.btn-ghost:hover .arrow { transform: translateX(5px); }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none !important; }
.btn-loading { position: relative; color: transparent !important; pointer-events: none; }
.btn-loading::after {
  content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid currentColor; border-top-color: transparent; color: var(--jade-deep);
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 5. 头部 / 玻璃导航 ---------- */
.header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.header.scrolled {
  background: var(--glass-scrolled);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border-strong), 0 10px 30px rgba(0, 0, 0, 0.18);
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--text); font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.logo img { height: 32px; }
.logo span { letter-spacing: -0.01em; }

.nav { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav > li { position: relative; }
.nav > li > a {
  display: flex; align-items: center; gap: 4px; position: relative;
  color: var(--muted); font-size: 0.96rem; font-weight: 500;
  padding: 9px 15px; border-radius: var(--r-xs); transition: color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.nav > li > a:hover { color: var(--text); background: var(--surface); }
.nav > li.active > a { color: var(--text); }
.nav > li.active > a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--jade); border-radius: 2px;
}
.nav > li > a .arrow { font-size: 0.6rem; color: var(--muted); transition: transform var(--dur) var(--ease); }
.nav > li:hover > a .arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 210px;
  background: var(--raised);
  border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  list-style: none;
}
.nav > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown li a {
  display: block; padding: 9px 14px; color: var(--muted); font-size: 0.92rem;
  border-radius: var(--r-xs); transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav-dropdown li a:hover { background: var(--surface); color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-search {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 8px 16px; color: var(--text); font-size: 0.9rem;
  outline: none; width: 170px; transition: width var(--dur) var(--ease), border-color var(--dur-fast) var(--ease);
  font-family: var(--font-body);
}
.header-search::placeholder { color: var(--muted); }
.header-search:focus { width: 210px; border-color: var(--jade-line); }

/* 主题切换按钮 */
.theme-toggle {
  position: relative; width: 42px; height: 42px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill);
  color: var(--muted); cursor: pointer; overflow: hidden;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.theme-toggle:hover { color: var(--jade); border-color: var(--jade-line); }
.theme-toggle svg { position: absolute; width: 20px; height: 20px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.theme-toggle .icon-moon { transform: rotate(0) scale(1); opacity: 1; }
.theme-toggle .icon-sun { transform: rotate(-90deg) scale(0.4); opacity: 0; }
[data-theme="light"] .theme-toggle .icon-moon { transform: rotate(90deg) scale(0.4); opacity: 0; }
[data-theme="light"] .theme-toggle .icon-sun { transform: rotate(0) scale(1); opacity: 1; }

.mobile-toggle {
  display: none; background: none; border: 1px solid var(--border); border-radius: var(--r-xs);
  color: var(--text); width: 42px; height: 42px; font-size: 1.2rem; cursor: pointer; align-items: center; justify-content: center;
}
.mobile-nav { display: none; }

/* 移动菜单面板 */
@media (max-width: 880px) {
  .nav, .header-search { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-nav {
    display: block; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; z-index: 999;
    background: var(--ink); padding: 16px 24px; overflow-y: auto;
    transform: translateX(100%); opacity: 0; pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
    border-top: 1px solid var(--border);
  }
  .mobile-nav.open { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .mobile-nav ul { list-style: none; }
  .mobile-search {
    display: flex; align-items: center; gap: 8px; margin-bottom: 12px; padding: 10px 12px;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--muted);
  }
  .mobile-search input { flex: 1; border: none; background: transparent; color: var(--text); font-size: 1rem; outline: none; }
  .mobile-nav-backdrop {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 998;
  }
  .mobile-nav-backdrop.show { display: block; }
  .mobile-nav > ul > li > a, .mobile-nav ul li a {
    display: flex; align-items: center; justify-content: space-between;
    color: var(--text); padding: 16px 4px; border-bottom: 1px solid var(--border);
    font-size: 1.05rem; font-weight: 500;
  }
  .mobile-nav ul li a:hover { color: var(--jade); }
}

/* ---------- 6. 英雄区（非对称） ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, var(--jade-soft), transparent 70%),
    radial-gradient(50% 50% at 10% 90%, rgba(232, 162, 74, 0.06), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; max-width: var(--max-width); margin: 0 auto; padding: clamp(72px, 11vw, 140px) 24px clamp(48px, 7vw, 96px);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  font-size: 0.8rem; color: var(--jade); padding: 6px 14px; border: 1px solid var(--jade-line);
  border-radius: var(--r-pill); background: var(--jade-soft); margin-bottom: 26px;
}
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy h1 .accent { color: var(--jade); }
.hero-copy p { color: var(--muted); font-size: 1.12rem; line-height: 1.75; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* 英雄右侧抽象视觉（节点环路） */
.hero-visual { position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: 480px; margin-left: auto; }
.hero-visual svg { width: 100%; height: 100%; overflow: visible; animation: float 9s ease-in-out infinite; }
.hero-visual .float-slow { animation: float 11s ease-in-out infinite; }
.hero-visual .pulse { animation: pulse 4s ease-in-out infinite; transform-origin: center; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ---------- 7. 指标条（单色） ---------- */
.metrics { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.metrics-inner { max-width: var(--max-width); margin: 0 auto; padding: clamp(36px, 5vw, 56px) 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.metric { text-align: center; }
.metric .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: var(--text); line-height: 1; letter-spacing: -0.02em; }
.metric .num .unit { font-size: 0.5em; color: var(--muted); margin-left: 2px; }
.metric .label { font-size: 0.9rem; color: var(--muted); margin-top: 10px; }
@media (max-width: 768px) { .metrics-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } }

/* ---------- 8. Bento 双产品线 ---------- */
.bento { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bento-card {
  position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(28px, 3.5vw, 44px);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.bento-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--jade), transparent); opacity: 0.7;
}
.bento-card:hover { transform: translateY(-4px); border-color: var(--jade-line); box-shadow: var(--shadow-lg); }
.bento-card .tag { font-family: var(--font-mono); font-size: 0.78rem; color: var(--jade); letter-spacing: 0.1em; }
.bento-card h3 { margin: 14px 0 12px; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.bento-card p { color: var(--muted); margin-bottom: 22px; }
.bento-feats { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.bento-feats li { display: flex; gap: 10px; align-items: flex-start; color: var(--text); font-size: 0.96rem; }
.bento-feats li svg { flex: none; width: 18px; height: 18px; color: var(--jade); margin-top: 4px; }
.bento-visual { margin-top: 8px; height: 150px; border-radius: var(--r-md); background: var(--ink); border: 1px solid var(--border); overflow: hidden; }

/* ---------- 9. 能力飞轮 ---------- */
.flywheel-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.flywheel { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1/1; margin: 0 auto; }
.flywheel svg.ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 60s linear infinite; transform-origin: center; }
.flywheel-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center; color: var(--text);
}
.flywheel-center .c-label { font-family: var(--font-mono); font-size: 0.75rem; color: var(--jade); letter-spacing: 0.12em; }
.flywheel-center .c-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; margin-top: 4px; }
.flywheel-node {
  position: absolute; top: 50%; left: 50%;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--raised); border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 9px 15px; font-size: 0.9rem; color: var(--text); box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(var(--rot)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--rot)));
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.flywheel-node .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--jade); }
.flywheel-node:hover { border-color: var(--jade-line); color: var(--jade); }
.flywheel-steps { list-style: none; display: grid; gap: 18px; counter-reset: step; }
.flywheel-steps li { display: flex; gap: 16px; align-items: flex-start; }
.flywheel-steps .n {
  flex: none; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--jade-line);
  display: flex; align-items: center; justify-content: center; color: var(--jade); font-family: var(--font-mono); font-size: 0.9rem;
}
.flywheel-steps h4 { font-size: 1.05rem; margin-bottom: 2px; }
.flywheel-steps p { color: var(--muted); font-size: 0.94rem; }

/* ---------- 10. 应用矩阵 ---------- */
.app-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.app-filter button {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 8px 18px; cursor: pointer; transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.app-filter button:hover { color: var(--text); border-color: var(--border-strong); }
.app-filter button.active { color: var(--on-jade); background: var(--jade-btn); border-color: var(--jade-btn); }
.app-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.app-card {
  display: flex; flex-direction: column; gap: 12px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 24px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.app-card:hover { transform: translateY(-3px); border-color: var(--jade-line); box-shadow: var(--shadow); }
.app-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--jade-soft); color: var(--jade); display: flex; align-items: center; justify-content: center; }
.app-icon svg { width: 22px; height: 22px; }
.app-card h4 { font-size: 1.05rem; }
.app-card p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.app-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  font-family: var(--font-mono); font-size: 0.72rem; padding: 3px 10px; border-radius: var(--r-pill);
  background: var(--jade-soft); color: var(--jade); border: 1px solid var(--jade-line);
}
.pill.neutral { background: var(--surface); color: var(--muted); border-color: var(--border); }
.pill.amber { background: var(--amber-soft); color: var(--amber); border-color: rgba(232, 162, 74, 0.3); }

/* ---------- 11. 模型矩阵 ---------- */
.model-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; align-items: stretch; }
.model-hero {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden;
}
.model-hero::after {
  content: ''; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; border-radius: 50%;
  background: var(--jade-soft); filter: blur(30px);
}
.model-hero .m-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; }
.model-hero .m-sub { color: var(--muted); font-size: 0.95rem; }
.model-hero .m-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.model-cloud { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(28px, 3vw, 40px); }
.model-cloud h4 { font-size: 1.1rem; margin-bottom: 18px; }
.model-cloud .tags { display: flex; flex-wrap: wrap; gap: 10px; }
.model-cloud .tags .pill { font-size: 0.82rem; padding: 6px 14px; }

/* ---------- 12. 三角色解决方案 ---------- */
.roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.role-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; gap: 16px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.role-card:hover { transform: translateY(-4px); border-color: var(--jade-line); box-shadow: var(--shadow); }
.role-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--jade-soft); color: var(--jade); display: flex; align-items: center; justify-content: center; }
.role-icon svg { width: 26px; height: 26px; }
.role-card h3 { font-size: 1.3rem; }
.role-card p { color: var(--muted); font-size: 0.96rem; flex: 1; }
.role-card .for { font-family: var(--font-mono); font-size: 0.78rem; color: var(--amber); letter-spacing: 0.08em; }

/* ---------- 13. 客户案例条 ---------- */
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.case-stat { text-align: center; padding: 28px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); }
.case-stat .n { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; color: var(--jade); line-height: 1; }
.case-stat .l { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }
.case-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; margin-bottom: 44px; }
.case-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card {
  display: flex; flex-direction: column; gap: 10px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.case-card:hover { transform: translateY(-3px); border-color: var(--jade-line); }
.case-card .meta { font-family: var(--font-mono); font-size: 0.75rem; color: var(--jade); }
.case-card h4 { font-size: 1.05rem; }
.case-card p { color: var(--muted); font-size: 0.9rem; }
.deploy-map {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 24px; height: 100%; display: flex; flex-direction: column; gap: 12px;
}
.deploy-map .dm-title { font-size: 0.95rem; color: var(--muted); }
.deploy-map svg { width: 100%; height: auto; flex: 1; }

/* ---------- 14. 信任背书 ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; }
.trust-item {
  display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 20px; transition: border-color var(--dur) var(--ease);
}
.trust-item:hover { border-color: var(--jade-line); }
.trust-item svg { flex: none; width: 30px; height: 30px; color: var(--jade); }
.trust-item .t-name { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.trust-item .t-sub { font-size: 0.8rem; color: var(--muted); }

/* ---------- 15. 路线图 Timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 20px; }
.timeline::before { content: ''; position: absolute; top: 11px; left: 0; right: 0; height: 1px; background: var(--border); }
.tl-item { position: relative; padding: 0 18px; }
.tl-item .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--jade); border: 3px solid var(--ink); position: relative; z-index: 1; box-shadow: 0 0 0 4px var(--jade-soft); }
.tl-item .year { font-family: var(--font-mono); font-size: 0.95rem; color: var(--jade); margin: 16px 0 8px; }
.tl-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.tl-item p { color: var(--muted); font-size: 0.9rem; }

/* ---------- 16. CTA ---------- */
.cta {
  position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--jade-line);
  border-radius: var(--r-lg); padding: clamp(48px, 6vw, 80px) 24px; text-align: center;
}
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, var(--jade-soft), transparent 70%); pointer-events: none; }
.cta > * { position: relative; }
.cta h2 { margin-bottom: 14px; }
.cta p { color: var(--muted); margin: 0 auto 30px; }

/* ---------- 17. 页脚 ---------- */
.footer { background: var(--ink-deep); color: var(--muted); padding: clamp(56px, 7vw, 88px) 0 28px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 44px; }
.footer-col h4 { color: var(--text); font-size: 1rem; margin-bottom: 18px; font-weight: 500; }
.footer-col p { font-size: 0.92rem; line-height: 1.8; color: var(--muted); max-width: none; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: var(--muted); font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--jade); }
.footer-col .contact-item { font-size: 0.92rem; margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-col .contact-item .icon { color: var(--jade); flex: none; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; font-size: 0.85rem; color: var(--muted); }
.footer-bottom p { text-align: center; width: 100%; max-width: 100%; box-sizing: border-box; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--jade); }
.footer-theme { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.85rem; }
.footer-theme .theme-toggle { width: 34px; height: 34px; }
@media (min-width: 768px) {
  .footer-bottom p { white-space: nowrap; }
}

/* ---------- 18. 卡片（列表 / 解决方案沿用） ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--jade-line); box-shadow: var(--shadow); }
.card-img { width: 100%; height: 200px; background: var(--raised); overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--jade); font-size: 2.5rem; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 22px; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.card-body p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.card-body .read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.9rem; color: var(--jade); }
.card-body .read-more:hover { gap: 10px; }

/* 解决方案大卡（图文） */
.solution-card {
  display: flex; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.solution-card:hover { transform: translateY(-4px); border-color: var(--jade-line); box-shadow: var(--shadow); }
.solution-card .img-side { flex: 0 0 38%; background: var(--raised); overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--jade); font-size: 3rem; }
.solution-card .img-side img { width: 100%; height: 100%; object-fit: cover; }
.solution-card .content-side { flex: 1; padding: 30px; }
.solution-card .content-side h3 { font-size: 1.25rem; color: var(--text); margin-bottom: 12px; }
.solution-card .content-side p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.solution-card .content-side .read-more { color: var(--jade); font-size: 0.9rem; display: inline-flex; gap: 6px; }

/* 合作伙伴（线性名墙） */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; align-items: center; }
.partner-logo {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 24px;
  text-align: center; height: 96px; display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.partner-logo:hover { transform: translateY(-3px); border-color: var(--jade-line); }
.partner-logo .name { font-size: 0.98rem; font-weight: 500; color: var(--text); }

/* ---------- 19. 文章列表 / 详情 ---------- */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); padding: 18px 0; }
.breadcrumb ul { list-style: none; display: flex; gap: 8px; font-size: 0.88rem; color: var(--muted); align-items: center; flex-wrap: wrap; }
.breadcrumb ul li a { color: var(--muted); }
.breadcrumb ul li a:hover { color: var(--jade); }
.breadcrumb ul li:last-child { color: var(--text); }

.article-list { display: flex; flex-direction: column; gap: 18px; }
.article-item {
  display: flex; gap: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.article-item:hover { transform: translateX(4px); border-color: var(--jade-line); box-shadow: var(--shadow); }
.article-item .thumb { flex: 0 0 220px; height: 160px; overflow: hidden; background: var(--raised); display: flex; align-items: center; justify-content: center; color: var(--jade); font-size: 2rem; }
.article-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-item .info { flex: 1; padding: 22px; min-width: 0; }
.article-item .info h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 8px; }
.article-item .info h3 a { color: inherit; }
.article-item .info h3 a:hover { color: var(--jade); }
.article-item .info .summary { font-size: 0.92rem; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.article-item .info .meta { font-size: 0.82rem; color: var(--muted); display: flex; gap: 16px; flex-wrap: wrap; }
.article-item .info .meta span { display: inline-flex; align-items: center; gap: 5px; }

.article-detail { padding: clamp(48px, 6vw, 80px) 0; }
.article-detail .container { max-width: 800px; }
.article-detail h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; line-height: 1.2; }
.article-detail .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); display: flex; gap: 20px; flex-wrap: wrap; }
.article-detail .content { font-size: 1.05rem; line-height: 1.9; color: var(--text); }
.article-detail .content h2 { font-size: 1.5rem; margin: 32px 0 14px; }
.article-detail .content h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.article-detail .content p { margin-bottom: 16px; max-width: none; }
.article-detail .content ul, .article-detail .content ol { margin-bottom: 16px; padding-left: 22px; }
.article-detail .content li { margin-bottom: 8px; }
.article-detail .content img { border-radius: var(--r-sm); margin: 16px 0; max-width: 100%; }
.article-detail .content a { color: var(--jade); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 20. 关于 ---------- */
.about-section { padding: clamp(48px, 6vw, 80px) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-grid .text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.about-grid .text p { color: var(--muted); margin-bottom: 14px; line-height: 1.8; }
.about-grid .img-side { border-radius: var(--r-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--border); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: var(--jade); }

/* ---------- 21. 联系 ---------- */
.contact-section { padding: clamp(48px, 6vw, 80px) 0; }

/* 公司身份卡 */
.contact-brand {
  display: flex; align-items: center; gap: clamp(16px, 2vw, 22px);
  padding: clamp(22px, 2.6vw, 30px) clamp(22px, 3vw, 34px);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); margin-bottom: clamp(24px, 3vw, 36px);
}
.contact-brand .brand-mark {
  width: 54px; height: 54px; flex: none; border-radius: var(--r-md);
  background: var(--jade-soft); color: var(--jade);
  display: flex; align-items: center; justify-content: center; font-size: 1.45rem;
}
.contact-brand .brand-text { min-width: 0; }
.contact-brand .brand-name {
  font-family: var(--font-display); font-weight: 600; color: var(--text);
  font-size: clamp(1.1rem, 2.4vw, 1.55rem); line-height: 1.45;
}
.contact-brand .brand-en {
  margin-top: 7px; font-family: var(--font-mono); line-height: 1.7;
  font-size: clamp(0.68rem, 1.4vw, 0.78rem);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(22px, 3vw, 40px); align-items: start;
}
.contact-info, .contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(26px, 3.2vw, 38px);
}

.card-head { margin-bottom: 26px; }
.card-head h2 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); margin-bottom: 8px; }
.card-head p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* 联系方式列表 */
.info-list { list-style: none; }
.info-item { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--border); }
.info-item:first-child { border-top: none; padding-top: 0; }
.info-item:last-child { padding-bottom: 0; }
.info-item .icon {
  width: 42px; height: 42px; flex: none; border-radius: var(--r-sm);
  background: var(--jade-soft); color: var(--jade);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.info-item .body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.info-item .label { font-size: 0.85rem; color: var(--muted); }
.info-item .value { font-size: 1rem; color: var(--text); line-height: 1.75; word-break: break-word; }
.info-item .value a {
  color: var(--text); text-decoration: none; border-bottom: 1px solid var(--jade-line);
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.info-item .value a:hover { color: var(--jade); border-color: var(--jade); }

/* 留言表单 */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.92rem; color: var(--text); font-weight: 500; }
.form-group label .req { color: var(--danger); margin-left: 2px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; background: var(--ink); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--r-sm); font-size: 0.95rem;
  outline: none; transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  font-family: var(--font-body);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--jade); box-shadow: 0 0 0 3px var(--jade-soft);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.has-error input, .form-group.has-error textarea { border-color: var(--danger); box-shadow: 0 0 0 3px var(--danger-soft); }
.form-error { font-size: 0.82rem; color: var(--danger); display: none; }
.form-group.has-error .form-error { display: block; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 32px; background: var(--jade-btn); color: var(--on-jade); border: none;
  border-radius: var(--r-sm); font-size: 1rem; font-weight: 500; font-family: var(--font-body);
  cursor: pointer; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(10, 110, 99, 0.30); background: var(--jade-btn-hover); }
.form-result { margin-top: 16px; padding: 12px 16px; border-radius: var(--r-sm); font-size: 0.92rem; display: none; }
.form-result.ok { display: block; background: var(--jade-soft); color: var(--jade); border: 1px solid var(--jade-line); }
.form-result.err { display: block; background: var(--danger-soft); color: var(--danger); border: 1px solid rgba(226, 89, 75, 0.3); }

.form-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form-note { font-size: 0.82rem; color: var(--muted); }

/* 业务咨询（后台可编辑正文） */
.contact-article {
  margin-top: clamp(28px, 3.6vw, 48px);
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3.4vw, 44px);
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--jade-line); border-radius: var(--r-lg);
}
.contact-article h1, .contact-article h2, .contact-article h3, .contact-article h4 {
  font-family: var(--font-display); font-size: 1.15rem; color: var(--text); margin: 0 0 14px;
}
.contact-article p { color: var(--muted); line-height: 1.95; margin: 0 0 14px; }
.contact-article p:last-child { margin-bottom: 0; }
.contact-article strong { color: var(--text); }
.contact-article a { color: var(--jade); }

/* ---------- 22. 分页 ---------- */
.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 44px; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 14px;
  border-radius: var(--r-sm); border: 1px solid var(--border); font-size: 0.92rem; color: var(--muted);
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.pagination a:hover { border-color: var(--jade-line); color: var(--jade); }
.pagination .current { background: var(--jade-btn); color: var(--on-jade); border-color: var(--jade-btn); }

/* ---------- 23. 404 / 500 ---------- */
.error-page { text-align: center; padding: clamp(80px, 12vw, 160px) 20px; }
.error-page h1 { font-size: clamp(5rem, 14vw, 9rem); color: var(--jade); line-height: 1; margin-bottom: 8px; font-family: var(--font-display); }
.error-page h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--text); margin-bottom: 14px; }
.error-page p { color: var(--muted); margin: 0 auto 28px; }
.error-page .cta-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; background: var(--jade-btn);
  color: var(--on-jade); border-radius: var(--r-sm); font-weight: 500; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.error-page .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(10, 110, 99, 0.30); background: var(--jade-btn-hover); color: var(--on-jade); }

/* ---------- 24. 旧 stats-bar（保留兼容） ---------- */
.stats-bar { background: var(--surface); padding: clamp(40px, 5vw, 64px) 0; color: var(--text); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 500; color: var(--text); }
.stat-item .label { font-size: 0.9rem; color: var(--muted); margin-top: 8px; }

/* ---------- 25. 回到顶部 ---------- */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; z-index: 998;
  background: var(--jade-btn); color: var(--on-jade); border: none; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(10, 110, 99, 0.34); background: var(--jade-btn-hover); }

/* ---------- 26. 滚动揭示动画 ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--d, 0s); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- 27. 响应式 ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin: 12px auto 0; max-width: 360px; }
  .bento { grid-template-columns: 1fr; }
  .flywheel-wrap { grid-template-columns: 1fr; }
  .flywheel { max-width: 340px; }
  .model-grid { grid-template-columns: 1fr; }
  .case-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .roles { grid-template-columns: 1fr; }
  .case-strip { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 28px; }
  .timeline::before { top: 0; bottom: 0; left: 6px; right: auto; width: 1px; height: auto; }
  .tl-item { padding-left: 30px; padding-right: 0; }
  .tl-item .dot { position: absolute; left: 0; top: 4px; }
  .tl-item .year { margin-top: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .metrics-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .case-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .article-item { flex-direction: column; }
  .article-item .thumb { flex: none; height: 180px; }
  .solution-card { flex-direction: column; }
  .solution-card .img-side { flex: none; height: 180px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .contact-brand { flex-direction: column; align-items: flex-start; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .form-foot .btn-submit { width: 100%; }
}

/* ---------- 28. 减弱动效（无障碍） ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-visual svg, .hero-visual .float-slow, .hero-visual .pulse, .flywheel svg.ring { animation: none !important; }
}
