/* =========================================================================
   云起技术官网 · 字节风设计系统 (yunqi.css)
   ------------------------------------------------------------------------
   设计方法论（借鉴字节跳动官网，不复刻其品牌资产）：
     · 固定高饱和「云起蓝」顶部导航 + 同色页脚
     · 使命型首屏：真实业务大图 + 白色使命面板（短标签 + 一句强主张）
     · 左右交错内容区，标题短、描述克制，图像约占半屏
     · 克制小圆角（卡片 8px / 按钮 6px / 标签 4px），仅使命面板用大圆角作记忆点
     · 大留白：桌面内容左右安全边距 ≈ 8vw，区块间距 > 区块内部间距
     · 品牌点缀：统一为 #3083fa，用于 hero 标签 / 关键数字 / 主 CTA
   该文件即「设计系统样板」，后续内页统一复用本套 token 与组件。
   ========================================================================= */

:root {
  color-scheme: light;

  /* —— 统一主色：#3083fa（导航 / 页脚 / 链接 / 主 CTA）—— */
  --brand: #3083fa;             /* 统一主色（大色块/导航/按钮/装饰） */
  --brand-strong: #3083fa;      /* 交互 hover、渐变 */
  --brand-ink: #3083fa;         /* 白底上的文字/链接 */
  --brand-deep: #3083fa;        /* 页脚底色 */
  --brand-soft: #3083fa;        /* 浅色块试色同步为统一主色 */
  --brand-line: #3083fa;

  /* —— 强调色：同步为统一主色 —— */
  --accent: #3083fa;
  --accent-strong: #3083fa;
  --accent-soft: #3083fa;

  /* —— 中性：炭黑文字梯度 + 留白底色 —— */
  --ink: #0f1c2e;
  --ink-soft: #33415c;
  --slate: #5a6b85;
  --muted: #8895ab;
  --paper: #ffffff;
  --wash: #f5f7fb;              /* 全页淡背景洗色 */
  --wash-2: #eef2f8;
  --line: #e3e9f2;
  --line-2: #d4ddec;

  /* —— 圆角：克制为主 —— */
  --r-chip: 4px;
  --r-btn: 6px;
  --r-card: 8px;
  --r-panel: 20px;             /* 仅首屏使命面板用作品牌记忆点 */

  /* —— 阴影：低调中性，无重黑投影 —— */
  --shadow-sm: 0 2px 10px rgba(15, 28, 46, 0.05);
  --shadow-md: 0 14px 38px rgba(15, 28, 46, 0.10);
  --shadow-lg: 0 30px 70px rgba(48, 131, 250, 0.16);

  /* —— 排版 —— */
  --font-cjk: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, sans-serif;
  --font-en: "Inter", "DM Sans", ui-sans-serif, "SF Pro Display", system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1240px;
  --gutter: 8vw;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-cjk);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
img:not([src]),
img[src=""] {
  visibility: hidden;
}
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.16; letter-spacing: -0.022em; }
p { margin: 0; }
ol, ul { margin: 0; }

.wrap { width: min(var(--maxw), calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.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;
}

/* 英文/数字用几何无衬线，强化国际化质感 */
.en { font-family: var(--font-en); }

/* =========================================================================
   1. 顶部导航 —— 首屏覆盖展示，随页面滚动离开视口
   ========================================================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: #fff;
  background: transparent;                /* 默认透明，悬浮在首屏大图上 */
  transition: background 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
/* 透明态顶部淡暗纱：保证白色 logo / 导航文字在大图上始终可读 */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(48, 131, 250, 0.4), transparent);
  transition: opacity 0.32s var(--ease);
}
.header-inner {
  width: auto;
  margin-left: clamp(24px, 9.27vw, 178px);
  margin-right: clamp(24px, 7.19vw, 138px);
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 32px;
  width: auto;
  max-width: min(220px, 48vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.site-nav > a {
  position: relative;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  border-radius: var(--r-btn);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.site-nav > a:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
/* 当前栏目：仅保留文字高亮 */
.site-nav > a[aria-current="page"] { color: #fff; }

/* 右侧主 CTA（统一主色，区别于普通导航项）*/
.nav-cta {
  margin-left: 8px;
  padding: 9px 20px !important;
  background: var(--accent) !important;
  color: #1a1206 !important;
  font-weight: 700;
  border-radius: var(--r-btn);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-cta:hover { background: #3083fa !important; transform: translateY(-1px); }

/* 移动端汉堡按钮 */
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

/* =========================================================================
   2. 使命首屏 —— 真实业务大图轮播 + 白色使命面板
   ========================================================================= */
.hero {
  position: relative;
  /*background: #3083fa;*/
  overflow: hidden;
}
.hero-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s var(--ease);
  will-change: transform;
}
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 100vh;                 /* 首屏占满整屏 */
  min-height: 100svh;
  display: block;
}
/* 图片整屏铺底，不再使用左侧遮罩或分栏裁切 */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-acceptance {
  /*background: #3083fa;*/
}
.hero-acceptance .hero-media img {
  width: 122%;
  max-width: none;
  object-position: left center;
}
.hero-media::after {
  display: none;
  content: none;
}
.hero-panel {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  width: auto;
  margin-left: clamp(24px, 9.27vw, 178px);
  margin-right: clamp(24px, 7.19vw, 138px);
  display: flex;
  align-items: center;
  padding: 96px 0;
  background: none;
}
.hero-card {
  max-width: 600px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(4, 18, 46, 0.42);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1206;
  background: var(--accent);
  border-radius: var(--r-chip);
}
.hero-card h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.hero-card p {
  margin-top: 20px;
  max-width: 540px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* slide1 专用：使命面板内的四要点卡片（半透明玻璃，叠在大图上） */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
  max-width: 100%;
}
.hero-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.hero-cards .hc {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-card);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.hero-cards .hc h3 {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.hero-cards .hc p {
  margin: 0;
  max-width: none;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

/* 明亮蓝天 banner：主文案保留深色，信息卡与按钮使用白色透明玻璃态 */
.hero-bright .hero-card {
  color: var(--ink);
  text-shadow: none;
}
.hero-bright .hero-card p {
  color: rgba(15, 28, 46, 0.82);
}
.hero-bright .hero-cards .hc {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 38px rgba(48, 131, 250, 0.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
          backdrop-filter: blur(18px) saturate(1.22);
}
.hero-bright .hero-cards .hc h3 {
  color: var(--accent);
}
.hero-bright .hero-cards .hc p {
  color: rgba(15, 28, 46, 0.82);
}
.hero-slide .btn.accent {
  color: #fff;
}
.hero-bright .btn.ghost-light {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.68);
  text-shadow: none;
}
.hero-bright .btn.ghost-light:hover {
  background: rgba(255, 255, 255, 0.34);
}

/* 通用按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-btn);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
              color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn.primary { background: var(--brand); color: #fff; }
.btn.primary:hover { background: var(--brand-strong); transform: translateY(-1px); }
.btn.accent { background: var(--accent); color: #1a1206; }
.btn.accent:hover { background: #3083fa; transform: translateY(-1px); }
.btn.ghost-light { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn.ghost-light:hover { background: rgba(255, 255, 255, 0.18); }
.btn.ghost { background: #fff; color: var(--brand-ink); border-color: var(--brand-line); }
.btn.ghost:hover { border-color: var(--brand); background: var(--brand-soft); }

/* 轮播控制：圆点分页 + 左右箭头 */
.hero-ctl {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 30px;
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-dots { display: flex; gap: 10px; }
.hero-dots button {
  width: 30px; height: 4px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.hero-dots button[aria-current="true"] { background: var(--accent); }
.hero-arrows { margin-left: auto; display: flex; gap: 10px; }
.hero-arrows button {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.hero-arrows button:hover { background: rgba(255, 255, 255, 0.2); border-color: #fff; }
.hero-arrows svg { width: 18px; height: 18px; }

/* =========================================================================
   3. 区块通用：标题头 + 进场动画
   ========================================================================= */
section { position: relative; }
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section.wash { background: var(--wash); }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.sec-eyebrow {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-ink);
}
.sec-head h2 { font-size: clamp(26px, 3.2vw, 40px); }
.sec-head .sec-desc { margin-top: 16px; max-width: 560px; color: var(--slate); font-size: 16px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 700;
  color: var(--brand-ink);
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.text-link::after { content: "→"; transition: transform 0.2s var(--ease); }
.text-link:hover { color: var(--brand); }
.text-link:hover::after { transform: translateX(3px); }

/* 滚动进场 */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

/* =========================================================================
   4. 企业 AI 执行力体系 —— 陈述式 + 标签
   ========================================================================= */
.statement .wrap { max-width: 920px; text-align: center; }
.statement .sec-eyebrow { text-align: center; }
.statement h2 { font-size: clamp(24px, 3vw, 36px); }
.statement-body {
  margin: 24px auto 0;
  max-width: 760px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.85;
  color: var(--ink-soft);
}
.statement-body strong { color: var(--brand-ink); font-weight: 700; }
.statement-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}
.statement-tags span {
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: var(--r-chip);
}

/* =========================================================================
   5. 可验收结果 —— 左右交错：左大图 / 右编号清单
   ========================================================================= */
.results-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.results-media {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.results-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.2; }
.results-head h2 { font-size: clamp(26px, 3.2vw, 38px); }
.results-head > p { margin-top: 16px; color: var(--slate); max-width: 460px; }
.results-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  gap: 4px;
}
.results-list li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.results-list li:last-child { border-bottom: 1px solid var(--line); }
.results-list .idx {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-ink);
  padding-top: 2px;
}
.results-list h3 { font-size: 18px; margin-bottom: 6px; }
.results-list p { color: var(--slate); font-size: 15px; }

/* =========================================================================
   6. 业务总览 —— 4 张实拍卡片网格（首格横跨，强调技术架构）
   ========================================================================= */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.biz-grid .biz-card.feature { grid-column: span 2; }
.biz-card {
  position: relative;
  display: block;
  border-radius: var(--r-card);
  overflow: hidden;
  background: #3083fa;
  color: #fff;
  min-height: 260px;
  isolation: isolate;
}
.biz-card.feature { min-height: 320px; }
.biz-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}
.biz-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.72) 100%);
}
.biz-card:hover img { transform: scale(1.05); }
.biz-card .biz-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px;
}
.biz-card .tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: var(--r-chip);
}
.biz-card h3 { font-size: 21px; margin-bottom: 8px; }
.biz-card.feature h3 { font-size: 26px; }
.biz-card p { font-size: 14px; color: rgba(255, 255, 255, 0.8); max-width: none; }

/* =========================================================================
   7. 了解云起 —— 企业简介主卡 + 四个能力入口
   ========================================================================= */
.about-section {
  background:
    linear-gradient(180deg, #fff 0%, rgba(245, 247, 251, 0) 210px),
    var(--wash);
}
.about-layout {
  --about-gap: 18px;
  --about-side-card-h: 291px;
  --about-feature-h: calc(var(--about-side-card-h) * 2 + var(--about-gap));
  --about-feature-media-h: 300px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 22px;
  align-items: start;
}
.about-feature-card {
  display: grid;
  grid-template-rows: var(--about-feature-media-h) 1fr;
  height: var(--about-feature-h);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.about-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-line);
  box-shadow: var(--shadow-md);
}
.about-feature-media {
  position: relative;
  height: var(--about-feature-media-h);
  overflow: hidden;
  background: #3083fa;
}
.about-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-feature-card:hover .about-feature-media img {
  transform: scale(1.04);
}
.about-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.52) 100%);
}
.about-feature-media span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 8px 13px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: rgba(48, 131, 250, 0.6);
  border-radius: var(--r-btn);
  backdrop-filter: blur(6px);
}
.about-feature-copy {
  padding: 30px 36px 32px;
}
.about-feature-copy h3 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 34px);
}
.about-feature-copy p {
  max-width: 560px;
  color: var(--slate);
}
.about-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.about-proof span {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: var(--r-card);
}
.about-proof strong {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}
.about-proof em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}
.about-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: var(--about-side-card-h);
  align-items: start;
  gap: var(--about-gap);
}
.about-card {
  display: flex;
  height: var(--about-side-card-h);
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  color: inherit;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.about-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-line);
  box-shadow: var(--shadow-md);
}
.about-card .about-media {
  flex: 0 0 136px;
  background: var(--brand-soft);
  overflow: hidden;
}
.about-card .about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.about-card:hover .about-media img {
  transform: scale(1.04);
}
.about-card .about-text {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 16px 18px 18px;
  overflow: hidden;
}
.about-feature-copy .tag,
.about-card .tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 12px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.about-card h3 {
  font-size: 18px;
  line-height: 1.42;
  color: var(--ink);
}
.about-card p {
  margin-top: 10px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================================
   8. 云起动态 —— 特稿 + 列表
   ========================================================================= */
.news-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}
.news-feature {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 420px;
  padding: 0;
  border-radius: var(--r-card);
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.news-feature::before {
  display: none;
  content: none;
}
.news-feature > a {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
}
.news-feature-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b1630;
}
.news-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}
.news-feature:hover .news-feature-media img {
  transform: scale(1.035);
}
.news-feature > a:hover h3 {
  color: var(--brand-ink);
}
.news-feature-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 28px 28px;
}
.news-feature .tag { position: relative; }
.news-list { display: flex; flex-direction: column; }
.news-row { border-bottom: 1px solid var(--line); }
.news-row:first-child { border-top: 1px solid var(--line); }
.news-row a { display: block; padding: 22px 0; transition: background 0.2s var(--ease); }
.news-row a:hover h3 { color: var(--brand-ink); }
.tag {
  display: inline-block;
  width: fit-content;
  max-width: max-content;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  background: var(--brand-soft);
  border-radius: var(--r-chip);
}
.tag.amber { color: #fff; background: var(--accent); }
.news-feature .tag,
.news-row .tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: max-content;
  padding: 4px 10px;
}
.news-feature h3 { font-size: clamp(20px, 2.4vw, 27px); position: relative; }
.news-row h3 { font-size: 17px; transition: color 0.2s var(--ease); }
.news-feature p, .news-row p { margin-top: 10px; color: var(--slate); font-size: 14.5px; }
.news-feature time, .news-row time {
  display: block;
  margin-top: 14px;
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--muted);
}
.news-feature time {
  margin-top: auto;
  padding-top: 16px;
}

#company-news .news-list {
  height: 100%;
}
#company-news .news-row {
  flex: 1 1 0;
  display: flex;
}
#company-news .news-row a {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =========================================================================
   9. 云起动态详情页
   ========================================================================= */
.article-hero .overview-hero-copy {
  max-width: 760px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-en);
  font-size: 14px;
}
.article-detail-section {
  background: #fff;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.article-content {
  max-width: 880px;
}
.article-content p {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.9;
}
.article-content p + p {
  margin-top: 26px;
}
.article-content h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 38px);
}
.article-callout {
  margin-top: 34px;
  padding: 24px 28px;
  color: var(--brand);
  background: rgba(48, 131, 250, 0.1);
  border-left: 5px solid var(--brand);
  border-radius: var(--r-card);
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 800;
  line-height: 1.55;
}
.article-aside {
  position: sticky;
  top: 112px;
  padding: 22px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}
.article-aside h2 {
  margin-bottom: 16px;
  font-size: 18px;
}
.article-aside nav {
  display: grid;
  gap: 10px;
}
.article-aside a {
  display: grid;
  gap: 5px;
  padding: 13px 14px;
  background: #fff;
  border: 1px solid rgba(48, 131, 250, 0.12);
  border-radius: var(--r-chip);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.article-aside a:hover,
.article-aside a[aria-current="page"] {
  color: var(--brand-ink);
  border-color: rgba(48, 131, 250, 0.34);
  transform: translateY(-1px);
}
.article-aside span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.article-aside strong {
  color: inherit;
  font-size: 14px;
  line-height: 1.45;
}
.news-page .news-feature,
.news-page .news-row {
  background: #fff;
}

.about-history-section {
  padding: 0;
  background: #fff;
}
.about-history-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 12, 24, 0.78), rgba(4, 12, 24, 0.68)),
    url("img/about-overview-banner-black.jpg") center / cover;
  color: #fff;
}
.about-history-head {
  min-height: 430px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 52px clamp(28px, 5vw, 72px);
}
.about-history-head h2 {
  margin-bottom: 38px;
  font-size: clamp(28px, 3.4vw, 42px);
}
.about-history-axis {
  --history-year-h: 22px;
  --history-gap: 12px;
  --history-dot: 22px;
  --history-line-top: calc(var(--history-year-h) + var(--history-gap) + var(--history-dot) / 2);
  position: relative;
  width: min(1040px, 100%);
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 0 14px;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.36) transparent;
}
.about-history-axis::-webkit-scrollbar {
  height: 6px;
}
.about-history-axis::-webkit-scrollbar-track {
  background: transparent;
}
.about-history-axis::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.36);
  border-radius: 999px;
}
.about-history-axis li::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--history-line-top);
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.about-history-axis li:first-child::before {
  left: 50%;
}
.about-history-axis li:last-child::before {
  right: 50%;
}
.about-history-axis li {
  position: relative;
  flex: 0 0 208px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}
.about-history-year {
  height: var(--history-year-h);
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 800;
}
.about-history-dot {
  position: relative;
  z-index: 1;
  width: var(--history-dot);
  height: var(--history-dot);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}
.about-history-axis h3 {
  margin-top: 12px;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.3;
  color: #fff;
}
.about-history-axis p {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.about-team-grid article {
  position: relative;
  min-height: 260px;
  padding: 30px 28px 28px;
  background:
    linear-gradient(180deg, rgba(48, 131, 250, 0.07), rgba(255, 255, 255, 0) 88px),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.about-team-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
}
.about-team-grid article::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(48, 131, 250, 0.08);
}
.about-team-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 131, 250, 0.36);
  box-shadow: 0 18px 44px rgba(48, 131, 250, 0.14);
}
.about-team-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--brand);
  font-family: var(--font-en);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1;
}
.about-team-grid h3 {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.25;
}
.about-team-grid p {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}

/* =========================================================================
   9. 服务客户 —— logo 跑马灯
   ========================================================================= */
.clients-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  align-items: center;
  animation: marquee 34s linear infinite;
}
.clients-marquee:hover .marquee-track { animation-play-state: paused; }
.client-logo {
  flex: 0 0 auto;
  height: 46px;
  display: grid;
  place-items: center;
}
.client-logo img {
  max-height: 46px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.25s var(--ease), opacity 0.25s var(--ease);
}
.client-logo:hover img { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================================
   10. 页脚 —— 同导航主色，多列站点地图
   ========================================================================= */
.site-footer {
  background: var(--brand);              /* 与导航统一为 #3083fa */
  color: rgba(255, 255, 255, 0.85);
  padding-top: 64px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.footer-brand .brand-logo { height: 34px; max-width: 230px; margin-bottom: 18px; }
.footer-tagline { max-width: 320px; font-size: 14px; line-height: 1.7; }
.footer-qr { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.footer-qr img { width: 78px; height: 78px; border-radius: var(--r-btn); background: #fff; padding: 4px; }
.footer-qr span { font-size: 13px; }
.footer-col-info,
.site-footer address.footer-col { font-style: normal; }
.footer-col-info h3,
.footer-col h3 {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.footer-col-info a, .footer-col-info p,
.footer-col a, .footer-col p {
  display: block;
  margin-bottom: 11px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { text-decoration: underline; }
.footer-col-info p strong,
.footer-col p strong { color: rgba(255, 255, 255, 0.92); font-weight: 600; margin-right: 8px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 0 40px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.88); transition: color 0.2s var(--ease); }
.footer-bottom a:first-child:hover { text-decoration: underline; }
.footer-bottom .dot { opacity: 0.4; }

/* =========================================================================
   11. 业务总览内页 —— 复用首页视觉语言的服务矩阵
   ========================================================================= */
.overview-hero {
  position: relative;
  min-height: 78vh;
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: 128px 0 88px;
  /*background: #3083fa;*/
  color: #fff;
  overflow: hidden;
}
.overview-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.overview-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.overview-hero-media::after {
  display: none;
  content: none;
}
.overview-hero::before {
  display: none;
  content: none;
}
.overview-hero-inner {
  position: relative;
  z-index: 2;
  width: auto;
  margin-left: clamp(24px, 9.27vw, 178px);
  margin-right: clamp(24px, 7.19vw, 138px);
}
.overview-hero-copy {
  max-width: 650px;
  text-shadow: 0 2px 16px rgba(4, 18, 46, 0.42);
}
.overview-hero-copy .hero-tag,
.overview-hero-copy .btn.accent {
  color: #fff;
}
.overview-hero-copy h1 {
  max-width: 640px;
  font-size: clamp(34px, 5.2vw, 64px);
  letter-spacing: -0.035em;
}
.overview-hero-copy > p {
  margin-top: 22px;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.78;
}
.overview-hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 30px;
}
.overview-hero-points span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.overview-tabs {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px var(--gutter);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(15, 28, 46, 0.04);
  backdrop-filter: blur(12px);
  overflow-x: auto;
}
.overview-tabs a {
  flex: 0 0 auto;
  position: relative;
  padding: 10px 14px 12px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s var(--ease);
}
.overview-tabs a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  background: var(--brand-ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s var(--ease);
}
.overview-tabs a:hover {
  color: var(--brand-ink);
}
.overview-tabs a[aria-selected="true"] {
  color: var(--brand-ink);
}
.overview-tabs a[aria-selected="true"]::after {
  transform: scaleX(1);
}
#execution-system,
#acceptance-results,
#business-entry,
#service-matrix,
#delivery-loop,
#architecture,
#product,
#industry,
#delivery,
#product-capabilities,
#industry-capabilities,
#custom-capabilities,
#custom-service-users,
#custom-service-content,
#custom-delivery-stages,
#custom-deliverables,
#custom-acceptance,
#custom-service-details,
#custom-service-detail {
  scroll-margin-top: 112px;
}

.acceptance-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.acceptance-copy h2 {
  font-size: clamp(27px, 3.5vw, 42px);
}
.acceptance-copy > p {
  max-width: 570px;
  margin-top: 18px;
  color: var(--slate);
}
.acceptance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.acceptance-list article {
  min-height: 188px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.acceptance-list .idx {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--brand-ink);
  font-size: 13px;
  font-weight: 800;
}
.acceptance-list h3 {
  margin-bottom: 8px;
  font-size: 20px;
}
.acceptance-list p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.7;
}
.acceptance-media {
  position: relative;
  min-height: 520px;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.acceptance-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.acceptance-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(48, 131, 250, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-card);
  backdrop-filter: blur(8px);
}
.acceptance-badge strong,
.acceptance-badge span {
  display: block;
}
.acceptance-badge strong {
  margin-bottom: 6px;
  font-size: 16px;
}
.acceptance-badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.entry-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.entry-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--brand);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.entry-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-line);
  box-shadow: var(--shadow-md);
}
.entry-card:hover::before { opacity: 1; }
.entry-no {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(48, 131, 250, 0.09);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}
.entry-card .tag {
  width: fit-content;
  margin-bottom: 22px;
}
.entry-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 22px;
}
.entry-card p {
  position: relative;
  z-index: 1;
  color: var(--slate);
  font-size: 15px;
}
.entry-card em {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 22px;
  color: var(--brand-ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}
.entry-card em::after { content: " →"; }

.matrix-map {
  display: grid;
  gap: 18px;
}
.matrix-hub {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 32px 30px;
  background:
    linear-gradient(135deg, rgba(48, 131, 250, 0.12), rgba(48, 131, 250, 0.04)),
    #fff;
  border: 1px solid rgba(48, 131, 250, 0.2);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.matrix-hub-mark {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 22px;
  color: #fff;
  background: var(--brand);
  border-radius: var(--r-card);
}
.matrix-hub-mark span {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}
.matrix-hub-copy h3,
.matrix-pillar h3,
.matrix-flow h3 {
  color: var(--ink);
}
.matrix-hub-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 34px);
}
.matrix-hub-copy p {
  max-width: 720px;
  color: var(--slate);
  font-size: 16px;
}
.matrix-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand-ink);
  font-size: 15px;
  font-weight: 800;
}
.matrix-link::after {
  content: ">";
  transition: transform 0.2s var(--ease);
}
.matrix-link:hover::after {
  transform: translateX(3px);
}
.matrix-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.matrix-pillar {
  --pillar-color: var(--brand);
  position: relative;
  display: flex;
  min-height: 232px;
  flex-direction: column;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.matrix-pillar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--pillar-color);
}
.matrix-pillar-product,
.matrix-pillar-industry,
.matrix-pillar-delivery {
  --pillar-color: var(--brand);
}
.matrix-pillar .tag {
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.1);
}
.matrix-pillar h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2vw, 25px);
}
.matrix-pillar p {
  color: var(--slate);
  font-size: 15px;
}
.matrix-pillar .matrix-link {
  margin-top: auto;
  padding-top: 22px;
}
.matrix-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: matrix-flow;
}
.matrix-flow li {
  position: relative;
  min-height: 132px;
  padding: 24px 24px 24px 82px;
  background:
    linear-gradient(180deg, rgba(48, 131, 250, 0.06), rgba(255, 255, 255, 0) 72px),
    #fff;
  border: 1px solid rgba(48, 131, 250, 0.16);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.matrix-flow li::before {
  counter-increment: matrix-flow;
  content: "0" counter(matrix-flow);
  position: absolute;
  top: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: var(--r-btn);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.matrix-flow h3 {
  margin-bottom: 6px;
  font-size: 22px;
}
.matrix-flow p {
  color: var(--slate);
  font-size: 15px;
}

/* =========================================================================
   12. 技术架构内页 —— 五层能力内容区
   ========================================================================= */
#layered-architecture,
#layer-detail-01,
#layer-detail-02,
#layer-detail-03,
#layer-detail-04,
#layer-detail-05 {
  scroll-margin-top: 112px;
}
.architecture-layers {
  background:
    linear-gradient(180deg, #fff 0%, rgba(245, 247, 251, 0.86) 100%),
    var(--wash);
}
.architecture-layer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.architecture-layer {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  min-height: 232px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.architecture-layer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--brand);
}
.architecture-layer:hover {
  transform: translateY(-3px);
  border-color: rgba(48, 131, 250, 0.3);
  box-shadow: var(--shadow-md);
}
.architecture-layer-feature {
  grid-column: span 2;
  grid-template-columns: 96px minmax(0, 1fr);
  min-height: 250px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(48, 131, 250, 0.1), rgba(48, 131, 250, 0.04)),
    #fff;
  border-color: rgba(48, 131, 250, 0.2);
}
.layer-no {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: var(--brand);
  border-radius: var(--r-btn);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.architecture-layer-feature .layer-no {
  width: 82px;
  height: 82px;
  font-size: 22px;
}
.layer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.layer-copy h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
}
.layer-copy p {
  max-width: 820px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.82;
}
.layer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand-ink);
  font-size: 14px;
  font-weight: 800;
}
.layer-link::after {
  content: ">";
  transition: transform 0.2s var(--ease);
}
.layer-link:hover::after {
  transform: translateX(3px);
}
.architecture-detail-panel {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  margin-top: 34px;
}
.architecture-detail-tabs {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
  padding: 10px;
  background: rgba(48, 131, 250, 0.07);
  border: 1px solid rgba(48, 131, 250, 0.14);
  border-radius: var(--r-card);
}
.architecture-detail-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 50px;
  padding: 12px 16px;
  color: var(--brand-ink);
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(48, 131, 250, 0.14);
  border-radius: var(--r-chip);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.architecture-detail-tabs a:hover {
  color: #fff;
  background: var(--brand);
  transform: translateX(2px);
}
.architecture-detail-tabs a[aria-current="page"] {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 12px 24px rgba(48, 131, 250, 0.18);
}
.architecture-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 26px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(48, 131, 250, 0.16);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.architecture-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), rgba(48, 131, 250, 0.18));
}
.architecture-detail-body {
  display: grid;
  gap: 22px;
  min-width: 0;
}
.architecture-detail-head {
  display: grid;
  gap: 8px;
}
.architecture-detail-head .sec-eyebrow {
  margin: 0;
}
.architecture-detail-card h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 32px);
}
.architecture-detail-card p {
  max-width: 900px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}
.architecture-detail-lead {
  margin-top: 2px;
}
.architecture-detail-callout {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(48, 131, 250, 0.1), rgba(48, 131, 250, 0.03));
  border: 1px solid rgba(48, 131, 250, 0.16);
  border-left: 4px solid var(--brand);
  border-radius: var(--r-card);
}
.architecture-detail-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-ink);
  font-size: 15px;
  font-weight: 900;
}
.architecture-detail-callout p {
  margin: 0;
}
.architecture-detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: 16px;
}
.architecture-detail-block {
  padding: 20px;
  background: rgba(248, 251, 255, 0.9);
  border: 1px solid rgba(48, 131, 250, 0.12);
  border-radius: var(--r-card);
}
.architecture-detail-block h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 17px;
}
.architecture-detail-card .architecture-detail-list,
.architecture-detail-card .architecture-deliverable-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.architecture-detail-card .architecture-detail-list li,
.architecture-detail-card .architecture-deliverable-list li {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  padding: 11px 12px 11px 34px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  background: #fff;
  border: 1px solid rgba(48, 131, 250, 0.14);
  border-radius: var(--r-chip);
}
.architecture-detail-card .architecture-detail-list li::before,
.architecture-detail-card .architecture-deliverable-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 15px;
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(48, 131, 250, 0.1);
}
.architecture-detail-card .architecture-deliverable-list li {
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.07);
}

/* =========================================================================
   13. 业务栏目详情页 —— 产品、行业与定制化服务
   ========================================================================= */
.detail-hero .overview-hero-media::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 38, 0.72), rgba(5, 18, 38, 0.38) 48%, rgba(5, 18, 38, 0.18)),
    linear-gradient(180deg, rgba(48, 131, 250, 0.16), rgba(4, 12, 24, 0.48));
}
.solution-detail {
  background: #fff;
}
.target-users-section {
  background: #fff;
}
.target-users-head {
  max-width: 940px;
  margin-bottom: clamp(30px, 4vw, 42px);
}
.target-users-head h2 {
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 42px);
}
.target-users-head p {
  margin-top: 14px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.82;
}
.target-user-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.target-user-card {
  min-height: 248px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.target-user-card .tag {
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.1);
}
.target-user-card h3 {
  margin: 16px 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.32;
}
.target-user-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}
.product-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-capability-card {
  min-height: 208px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.product-capability-card .tag {
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.1);
}
.product-capability-card h3 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.28;
}
.product-capability-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}
.product-core-section,
.delivery-mode-section {
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.72), rgba(255, 255, 255, 0)),
    #fff;
}
.product-core-section .product-capability-card h3 {
  color: var(--brand-ink);
}
.delivery-mode-grid .product-capability-card {
  min-height: 208px;
}
.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.detail-card {
  position: relative;
  min-height: 248px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(48, 131, 250, 0.06), rgba(255, 255, 255, 0) 96px),
    #fff;
  border: 1px solid rgba(48, 131, 250, 0.16);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--brand);
}
.detail-card:hover {
  transform: translateY(-3px);
  border-color: rgba(48, 131, 250, 0.3);
  box-shadow: var(--shadow-md);
}
.detail-no {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  color: #fff;
  background: var(--brand);
  border-radius: var(--r-btn);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.detail-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
}
.detail-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.78;
}
.industry-solution-section {
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.78), rgba(255, 255, 255, 0)),
    var(--wash);
}
.industry-content-grid {
  display: grid;
  gap: 18px;
}
.industry-content-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.industry-content-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.industry-content-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.industry-content-card {
  min-height: 248px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.industry-content-card.compact {
  min-height: 170px;
}
.industry-content-card.value-card {
  min-height: 150px;
}
.industry-content-card.detail-card-large {
  min-height: 380px;
  padding: 34px;
}
.industry-content-card .tag {
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.1);
}
.industry-content-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.32;
}
.industry-content-card .tag + h3,
.industry-content-card .detail-no + h3,
.industry-detail-index + h3 {
  margin-top: 22px;
}
.industry-content-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.78;
}
.industry-content-card.value-card h3 {
  color: var(--brand-ink);
}
.industry-detail-index {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
.detail-card-large .matrix-link {
  margin-top: 34px;
}
.solution-process {
  background:
    linear-gradient(180deg, #fff 0%, rgba(245, 247, 251, 0.92) 100%),
    var(--wash);
}
.detail-step-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.detail-step-list li {
  min-height: 196px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.detail-step-list span {
  width: fit-content;
  margin-bottom: 30px;
  color: var(--brand-ink);
  font-size: 14px;
  font-weight: 800;
}
.detail-step-list strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}
.detail-step-list p {
  margin-top: 10px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}
.product-loop-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-loop-list li {
  min-height: 232px;
  background:
    linear-gradient(180deg, rgba(48, 131, 250, 0.06), rgba(255, 255, 255, 0) 92px),
    #fff;
  border-color: rgba(48, 131, 250, 0.16);
}
.product-loop-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
}
.product-loop-list strong {
  font-size: 23px;
}
.product-loop-list p {
  font-size: 15px;
  line-height: 1.75;
}
.product-flow-section {
  background: #fff;
}
.product-flow-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.product-flow-list li {
  min-height: 214px;
  background:
    linear-gradient(180deg, rgba(48, 131, 250, 0.05), rgba(255, 255, 255, 0) 86px),
    #fff;
  border-color: rgba(48, 131, 250, 0.14);
}
.product-flow-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.1);
  border: 1px solid rgba(48, 131, 250, 0.18);
  border-radius: 50%;
}
.product-value-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(48, 131, 250, 0.22), transparent 34%),
    linear-gradient(135deg, #071a33 0%, #0f1c2e 56%, #0b274f 100%);
  color: #fff;
}
.product-value-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  min-height: clamp(420px, 45vw, 560px);
  padding-block: clamp(40px, 6vw, 76px);
}
.product-value-copy h2 {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 42px);
}
.product-value-copy p {
  margin-top: 14px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.8;
}
.product-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.product-value-grid div {
  min-height: 174px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-card);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}
.product-value-grid strong {
  color: #8ec0ff;
  font-family: var(--font-en);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
}
.product-value-grid span {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  font-weight: 700;
}
.product-detail-section {
  background: #fff;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-detail-card {
  min-height: 276px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(48, 131, 250, 0.06), rgba(255, 255, 255, 0) 104px),
    #fff;
  border: 1px solid rgba(48, 131, 250, 0.16);
  border-radius: var(--r-card);
  color: inherit;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.product-detail-card:hover {
  transform: translateY(-3px);
  border-color: rgba(48, 131, 250, 0.32);
  box-shadow: var(--shadow-md);
}
.product-detail-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.28;
}
.product-detail-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.76;
}
.product-detail-card em {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand-ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}
.product-module-section {
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.86), rgba(255, 255, 255, 0)),
    #fff;
}
.product-module-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.product-module-tabs {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.product-module-tabs a {
  padding: 12px 14px;
  color: var(--ink-soft);
  border-radius: var(--r-btn);
  font-size: 14px;
  font-weight: 700;
}
.product-module-tabs a:hover,
.product-module-tabs a[aria-current="page"] {
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.1);
}
.product-module-card {
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
  border: 1px solid rgba(48, 131, 250, 0.16);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.product-module-card > h3 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.18;
}
.product-module-lead {
  max-width: 780px;
  margin-top: 16px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.85;
}
.product-module-callout {
  margin-top: 28px;
  padding: 24px;
  background: rgba(48, 131, 250, 0.08);
  border: 1px solid rgba(48, 131, 250, 0.16);
  border-radius: var(--r-card);
}
.product-module-callout strong,
.product-module-block h4,
.product-module-results h4 {
  color: var(--ink);
  font-size: 20px;
}
.product-module-callout p {
  margin-top: 10px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.78;
}
.product-module-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  margin-top: 24px;
}
.product-module-block {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}
.product-module-flow,
.product-module-feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.product-module-flow li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px 14px;
}
.product-module-flow span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.1);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}
.product-module-flow strong {
  color: var(--ink);
  font-size: 17px;
}
.product-module-flow p,
.product-module-feature-list li {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}
.product-module-feature-list li {
  position: relative;
  padding-left: 18px;
}
.product-module-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}
.product-module-results {
  margin-top: 24px;
}
.product-module-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.product-module-result-grid div {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.08);
  border: 1px solid rgba(48, 131, 250, 0.16);
  border-radius: var(--r-card);
  font-weight: 800;
}
.custom-service-section {
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.72), rgba(255, 255, 255, 0)),
    #fff;
}
.custom-service-section:nth-of-type(even) {
  background: #fff;
}
.custom-service-grid {
  display: grid;
  gap: 18px;
}
.custom-service-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.custom-service-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.custom-service-card {
  min-height: 220px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.custom-service-card .tag {
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.1);
}
.custom-service-card h3 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.3;
}
.custom-service-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}
.custom-stage-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.custom-stage-list li {
  min-height: 230px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.custom-stage-list span,
.custom-detail-no {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: #fff;
  background: var(--brand);
  border-radius: var(--r-btn);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}
.custom-stage-list strong {
  display: block;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.25;
}
.custom-stage-list p {
  margin-top: 10px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}
.custom-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.custom-deliverable-grid article {
  min-height: 104px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  font-size: 17px;
  font-weight: 800;
}
.custom-acceptance-grid .custom-service-card {
  min-height: 150px;
}
.custom-acceptance-grid .custom-service-card h3 {
  margin-top: 0;
  color: var(--brand-ink);
}
.custom-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.custom-detail-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.custom-detail-card h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.32;
}
.custom-detail-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.78;
}
.custom-detail-card .matrix-link {
  margin-top: auto;
  padding-top: 24px;
}

.delivery-loop {
  background:
    linear-gradient(90deg, rgba(48, 131, 250, 0.96), rgba(48, 131, 250, 0.82)),
    var(--brand-deep);
  color: #fff;
}
.delivery-loop .sec-eyebrow {
  color: var(--accent);
}
.loop-head {
  max-width: 760px;
  margin-bottom: 40px;
}
.loop-head h2 {
  font-size: clamp(28px, 3.8vw, 44px);
}
.loop-head p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}
.loop-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.loop-steps article {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-card);
}
.loop-steps span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}
.loop-steps h3 {
  margin-bottom: 12px;
  font-size: 24px;
}
.loop-steps p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}
.loop-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* =========================================================================
   14. 了解云起内页 —— 指标、价值观与能力体系
   ========================================================================= */
.about-page-hero {
  position: relative;
  min-height: 78vh;
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: 128px 0 88px;
  color: #fff;
  overflow: hidden;
}
.about-page-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.about-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page-media::after {
  display: none;
  content: none;
}
.about-page-hero::before {
  display: none;
  content: none;
}
.about-page-hero-inner {
  position: relative;
  z-index: 2;
  width: auto;
  margin-left: clamp(24px, 9.27vw, 178px);
  margin-right: clamp(24px, 7.19vw, 138px);
}
.about-page-hero-copy {
  max-width: 650px;
  text-shadow: 0 2px 16px rgba(4, 18, 46, 0.42);
}
.about-page-hero-copy .hero-tag,
.about-page-hero-copy .btn.accent {
  color: #fff;
}
.about-page-hero-copy h1 {
  max-width: 650px;
  font-size: clamp(34px, 5.2vw, 64px);
  letter-spacing: -0.035em;
}
.about-page-hero-copy p {
  margin-top: 22px;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.78;
}
#company-stats,
#company-news,
#company-values,
#company-history,
#company-team,
#company-honors,
#company-clients,
#company-contact {
  scroll-margin-top: 112px;
}

.about-stats {
  background: #fff;
  padding-block: clamp(72px, 6.4vw, 92px);
}
.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin-inline: auto;
}
.about-stat-grid article {
  min-height: 230px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.about-stat-grid strong {
  display: block;
  color: var(--brand-ink);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1;
}
.about-stat-grid span {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 800;
}
.about-stat-grid p {
  margin-top: 12px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}

.about-values {
  background: #FBFBFB;
  color: var(--ink);
  padding-block: clamp(44px, 5vw, 64px);
}
.about-values .sec-eyebrow {
  color: var(--brand-ink);
}
.about-values-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.about-values h2 {
  font-size: clamp(30px, 4vw, 48px);
}
.about-values-copy {
  display: grid;
  gap: 18px;
}
.about-values-copy p {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.9;
}

.about-honor-marquee {
  position: relative;
  margin-top: 8px;
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.about-honor-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 8px 4px 18px;
  animation: honor-scroll 42s linear infinite;
  will-change: transform;
}
.about-honor-marquee:hover .about-honor-track,
.about-honor-marquee:focus-within .about-honor-track {
  animation-play-state: paused;
}
.about-honor-set {
  display: flex;
  gap: 18px;
  flex: 0 0 auto;
}
.honor-card {
  flex: 0 0 clamp(300px, 26vw, 360px);
  --honor-media-h: 300px;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.honor-card-landscape {
  flex-basis: clamp(360px, 30vw, 440px);
  --honor-media-h: 260px;
}
.honor-card-portrait {
  flex-basis: clamp(300px, 24vw, 340px);
  --honor-media-h: 340px;
}
.honor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 131, 250, 0.34);
  box-shadow: 0 18px 44px rgba(48, 131, 250, 0.13);
}
.honor-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--honor-media-h);
  min-width: 0;
  width: 100%;
  height: var(--honor-media-h);
  margin: 0;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(48, 131, 250, 0.08), rgba(255, 255, 255, 0)),
    #f7f9fd;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.honor-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(15, 28, 46, 0.12));
}
.honor-card-meta {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  padding: 18px 20px 22px;
  background: #fff;
}
.honor-card-meta span {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  color: #fff;
  background: var(--brand);
  border-radius: var(--r-chip);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.honor-card-meta h3 {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.35;
}
.honor-card-meta p {
  margin-top: 10px;
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.65;
}
@keyframes honor-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.about-client-groups {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: start;
  margin-bottom: clamp(70px, 8vw, 104px);
}
.about-client-groups-copy {
  position: sticky;
  top: 132px;
}
.about-client-groups-copy h2 {
  max-width: 460px;
  font-size: clamp(30px, 3.8vw, 46px);
}
.about-client-groups-copy p {
  max-width: 520px;
  margin-top: 20px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.8;
}
.client-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.client-group-grid article,
.case-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.client-group-grid article {
  min-height: 320px;
  padding: 28px;
}
.client-group-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.1);
  border-radius: var(--r-btn);
  font-family: var(--font-en);
  font-weight: 800;
}
.client-group-grid h3,
.case-grid h3 {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.32;
}
.client-group-grid p,
.case-grid p {
  margin-top: 18px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}
.client-group-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.client-group-grid em,
.case-type {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.1);
  border: 1px solid rgba(48, 131, 250, 0.18);
  border-radius: var(--r-btn);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}
.about-case-section {
  margin-bottom: clamp(70px, 8vw, 104px);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.case-grid article {
  display: grid;
  grid-template-rows: auto 72px 116px 1fr;
  padding: 32px 30px;
}
.case-grid .case-type {
  margin-bottom: 14px;
}
.case-grid h3 {
  min-height: 72px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.case-grid p {
  min-height: 116px;
}
.case-grid dl {
  display: grid;
  grid-template-rows: repeat(3, minmax(94px, auto));
  margin: 4px 0 0;
}
.case-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.case-grid dt {
  color: var(--brand-ink);
  font-weight: 800;
}
.case-grid dd {
  margin: 8px 0 18px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}

.about-contact {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.72) 0%, rgba(255, 255, 255, 0.95) 100%),
    var(--wash);
  border-top: 1px solid var(--line);
}
.about-contact-head {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}
.about-contact-head .sec-eyebrow {
  color: var(--brand-ink);
}
.about-contact-head h2 {
  margin-top: 12px;
  font-size: clamp(36px, 4.8vw, 58px);
  letter-spacing: -0.035em;
}
.about-contact-head p {
  margin-top: 18px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.8;
}
.about-contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}
.about-contact-methods article {
  min-height: 156px;
  padding: 24px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(48, 131, 250, 0.12);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.contact-method-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.about-contact-methods h3 {
  color: var(--ink);
  font-size: 18px;
}
.about-contact-methods p {
  margin-top: 10px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.55;
}
.about-contact-methods a {
  color: var(--brand-ink);
  font-weight: 800;
}
.about-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid rgba(48, 131, 250, 0.12);
  border-radius: var(--r-card);
  box-shadow: 0 24px 60px rgba(15, 28, 46, 0.08);
}
.about-contact-form {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.about-contact-form::before {
  display: none;
  content: none;
}
.about-contact-form-head {
  margin-bottom: 24px;
}
.about-contact-form-head h3,
.about-contact-side h3 {
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 32px);
}
.about-contact-form-head p,
.about-contact-side > p {
  max-width: 620px;
  margin-top: 10px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}
.about-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.about-contact-form label,
.about-form-field {
  display: grid;
  gap: 8px;
}
.about-contact-form label span,
.about-form-field > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.about-contact-form input,
.about-contact-form select,
.about-contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.about-contact-form input,
.about-contact-form select {
  min-height: 50px;
  padding: 0 14px;
}
.about-contact-form textarea {
  min-height: 142px;
  padding: 13px 14px;
  resize: vertical;
}
.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder {
  color: var(--muted);
}
.about-contact-form input:focus,
.about-contact-form select:focus,
.about-contact-form textarea:focus {
  background: #fbfdff;
  border-color: rgba(48, 131, 250, 0.72);
  box-shadow: 0 0 0 3px rgba(48, 131, 250, 0.1);
}
.custom-select {
  position: relative;
}
.custom-select-trigger {
  position: relative;
  width: 100%;
  min-height: 50px;
  padding: 0 42px 0 14px;
  color: var(--ink);
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.custom-select-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.custom-select-trigger:focus,
.custom-select.is-open .custom-select-trigger {
  background: #fbfdff;
  border-color: rgba(48, 131, 250, 0.72);
  box-shadow: 0 0 0 3px rgba(48, 131, 250, 0.1);
}
.custom-select.is-open .custom-select-trigger::after {
  border-color: var(--brand);
  transform: translateY(-35%) rotate(225deg);
}
.custom-select-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(48, 131, 250, 0.16);
  border-radius: var(--r-card);
  box-shadow: 0 18px 44px rgba(15, 28, 46, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
}
.custom-select.is-open .custom-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.custom-select-menu button {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink-soft);
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: var(--r-chip);
  cursor: pointer;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.custom-select-menu button:hover,
.custom-select-menu button:focus {
  color: var(--brand-ink);
  background: rgba(48, 131, 250, 0.08);
  outline: none;
}
.custom-select-menu button[aria-selected="true"] {
  color: #fff;
  background: var(--brand);
}
.about-form-wide {
  margin-top: 18px;
}
.about-contact-form .btn {
  min-width: 128px;
  min-height: 42px;
  padding: 10px 24px;
  justify-content: center;
  margin-top: 30px;
  color: #fff;
}
.about-contact-form .btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}
.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}
.form-status.success {
  color: #0f8f52;
}
.form-status.error {
  color: #c23829;
}
.about-contact-note {
  margin-top: 16px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}
.about-contact-note a {
  color: var(--brand-ink);
  font-weight: 800;
}
.about-contact-side {
  padding: 26px;
  background: linear-gradient(180deg, rgba(48, 131, 250, 0.07), rgba(48, 131, 250, 0.025));
  border: 1px solid rgba(48, 131, 250, 0.14);
  border-radius: var(--r-card);
}
.about-contact-card-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.about-contact-card-grid article {
  position: relative;
  min-height: 0;
  padding: 18px 18px 18px 68px;
  background: #fff;
  border: 1px solid rgba(48, 131, 250, 0.12);
  border-radius: var(--r-card);
  box-shadow: none;
}
.about-contact-card-grid span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--brand);
  border-radius: var(--r-btn);
  font-size: 12px;
  font-weight: 800;
}
.about-contact-card-grid h4 {
  color: var(--ink);
  font-size: 17px;
}
.about-contact-card-grid p {
  margin-top: 6px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}
/* 兼容旧类名，避免历史内容回退时出现深色样式 */
.about-contact-lines,
.about-contact-copy {
  color: inherit;
}

/* =========================================================================
   15. 响应式
   ========================================================================= */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-feature-card {
    height: auto;
    grid-template-rows: minmax(260px, auto) auto;
  }
  .about-feature-media { height: 300px; }
  .about-mini-grid { grid-auto-rows: auto; }
  .about-card { height: auto; }
  .about-card .about-media {
    flex-basis: auto;
    aspect-ratio: 16 / 9;
  }
  .entry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .loop-steps { grid-template-columns: 1fr; }
  .about-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-client-groups { grid-template-columns: 1fr; }
  .about-contact-panel { grid-template-columns: 1fr; }
  .about-client-groups-copy { position: static; }
  .case-grid { grid-template-columns: 1fr; }
  .case-grid article { grid-template-rows: none; }
  .case-grid h3,
  .case-grid p { min-height: 0; }
  .case-grid dl { grid-template-rows: none; }
  .about-values-grid { grid-template-columns: 1fr; }
  .architecture-layer-grid { grid-template-columns: 1fr; }
  .architecture-layer-feature { grid-column: auto; }
  .architecture-detail-columns { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .target-user-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-content-grid.cols-4,
  .industry-content-grid.cols-3,
  .industry-content-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-loop-list,
  .product-flow-list,
  .detail-step-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-value-panel { grid-template-columns: 1fr; }
  .product-value-grid,
  .product-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-module-layout,
  .product-module-columns { grid-template-columns: 1fr; }
  .product-module-tabs { position: static; }
  .custom-service-grid-4,
  .custom-service-grid-3,
  .custom-stage-list,
  .custom-deliverable-grid,
  .custom-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root { --gutter: 5vw; }
  .hero-cards.cols-3 { grid-template-columns: 1fr 1fr; }
  .header-inner {
    margin-left: var(--gutter);
    margin-right: var(--gutter);
  }

  /* 导航转汉堡 */
  .menu-toggle { display: flex; }
  .site-nav {
    position: absolute;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 14px var(--gutter) 24px;
    background: var(--brand);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  }
  .site-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav > a { padding: 14px 12px; font-size: 16px; border-radius: var(--r-btn); }
  .site-nav > a[aria-current="page"] { background: rgba(255, 255, 255, 0.12); }
  .nav-cta { margin: 8px 0 0 !important; text-align: center; justify-content: center; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* 移动端仍为整屏图片铺底，不叠加左侧遮罩 */
  .hero-media { position: absolute; inset: 0; z-index: 0; }
  .hero-panel {
    z-index: 1;
    width: 100%;
    margin: 0;
    background: transparent;
    padding: 92px var(--gutter);
  }

  .sec-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .results-grid { grid-template-columns: 1fr; gap: 32px; }
  .results-media { order: -1; }
  .biz-grid { grid-template-columns: 1fr; }
  .biz-grid .biz-card.feature { grid-column: span 1; }
  .about-mini-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .about-history-head {
    min-height: 420px;
    padding-inline: var(--gutter);
  }
  .about-history-axis {
    justify-self: stretch;
  }
  .about-history-axis li { flex-basis: 190px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }

  .overview-hero {
    min-height: auto;
    padding: 116px 0 76px;
  }
  .overview-hero-media {
    inset: 0;
  }
  .overview-hero-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .overview-tabs {
    justify-content: flex-start;
    top: 0;
  }
  .about-page-hero {
    min-height: auto;
    padding: 116px 0 76px;
  }
  .about-page-media {
    inset: 0;
  }
  .acceptance-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .acceptance-media {
    min-height: 360px;
    order: -1;
  }
  .acceptance-media img { min-height: 360px; }
  .entry-grid { grid-template-columns: 1fr; }
  .entry-card { min-height: 238px; }
  .target-user-grid,
  .product-capability-grid,
  .detail-card-grid,
  .industry-content-grid.cols-4,
  .industry-content-grid.cols-3,
  .industry-content-grid.cols-2,
  .product-loop-list,
  .product-flow-list,
  .detail-step-list {
    grid-template-columns: 1fr;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .product-value-grid div {
    min-height: 142px;
  }
  .product-module-result-grid {
    grid-template-columns: 1fr;
  }
  .custom-service-grid-4,
  .custom-service-grid-3,
  .custom-stage-list,
  .custom-deliverable-grid,
  .custom-detail-grid {
    grid-template-columns: 1fr;
  }
  .matrix-hub {
    grid-template-columns: 1fr;
  }
  .matrix-hub-mark {
    min-height: 96px;
  }
  .matrix-pillar-grid {
    grid-template-columns: 1fr;
  }
  .matrix-flow {
    grid-template-columns: 1fr;
  }
  .about-contact-methods {
    grid-template-columns: 1fr;
  }
  .about-contact-card-grid,
  .about-form-grid {
    grid-template-columns: 1fr;
  }
  .architecture-detail-panel {
    grid-template-columns: 1fr;
  }
  .architecture-detail-tabs {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .architecture-detail-card {
    grid-template-columns: 1fr;
  }
  .loop-steps article {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .about-mini-grid { grid-template-columns: 1fr; }
  .about-proof { grid-template-columns: 1fr; }
  .about-stat-grid { grid-template-columns: 1fr; }
  .about-team-grid { grid-template-columns: 1fr; }
  .client-group-grid { grid-template-columns: 1fr; }
  .about-contact-panel,
  .about-contact-side { padding: 20px; }
  .hero-cards, .hero-cards.cols-3 { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-arrows { display: none; }
  .overview-hero-points { grid-template-columns: 1fr; }
  .acceptance-list { grid-template-columns: 1fr; }
  .matrix-hub,
  .matrix-pillar,
  .architecture-layer,
  .architecture-layer-feature,
  .architecture-detail-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .architecture-detail-tabs {
    padding: 8px;
    grid-template-columns: 1fr;
  }
  .architecture-detail-tabs a {
    min-height: 40px;
  }
  .architecture-detail-callout,
  .architecture-detail-block,
  .article-callout {
    padding: 16px;
  }
  .matrix-flow li {
    padding: 74px 20px 20px;
  }
  .matrix-flow li::before {
    top: 20px;
    left: 20px;
  }
  .architecture-layer { min-height: auto; }
  .architecture-layer-feature .layer-no,
  .layer-no {
    width: 58px;
    height: 58px;
    font-size: 17px;
  }
  .overview-tabs a { padding-inline: 12px; }
  .loop-cta .btn { flex: 1; justify-content: center; }
}

/* 尊重减少动态偏好 */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .hero-track { transition: none; }
  .about-honor-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}
