/* 此文件由 scripts/build_site_css.py 自动生成，请勿手改。请编辑 static/css/ 下对应分片后重新构建。 */

/* ===== 00-base.css ===== */
/* 灵脉官网 · 统一样式（download-service） */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;600;700&display=swap");

:root {
  --bg: #f3f5fa;
  --surface: #ffffff;
  --surface-elevated: #fafbfd;
  --text: #0c1222;
  --text-body: #3d4757;
  --muted: #5a6678;
  --line: rgba(15, 23, 42, 0.09);
  --line-strong: rgba(15, 23, 42, 0.14);
  --accent: #2248eb;
  --accent-hover: #1a3acb;
  --accent-muted: #e8edfc;
  --accent-border: rgba(34, 72, 235, 0.22);
  --green: #0d9a4e;
  --green-soft: #e8f7ee;
  --green-border: rgba(13, 154, 78, 0.28);
  --orange: #c2410c;
  --orange-soft: #fff4e8;
  --blue-soft: #e8f0ff;
  --radius: 16px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 28px rgba(15, 23, 42, 0.07);
  --shadow-strong: 0 4px 14px rgba(15, 23, 42, 0.08),
    0 22px 48px rgba(15, 23, 42, 0.06);
  --container: 1120px;
  --narrow: 980px;
  /* DM Sans：拉丁与数字更偏商业化 UI；Noto Sans SC：中文正文与标题统一可读 */
  --font: "DM Sans", "Noto Sans SC", -apple-system, "Segoe UI", Roboto,
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC",
    ui-sans-serif, sans-serif;
  --focus: 0 0 0 2px var(--surface), 0 0 0 5px rgba(34, 72, 235, 0.38);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  background: var(--bg);
  background-image: radial-gradient(
    ellipse 120% 80% at 50% -20%,
    rgba(34, 72, 235, 0.06),
    transparent 55%
  );
  color: var(--text);
  line-height: 1.625;
  letter-spacing: 0;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

/* ===== 01-layout.css ===== */
/* —— 焦点（键盘导航） —— */
a:focus-visible,
button:focus-visible,
.nav a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

/* —— 顶栏 —— */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(243, 245, 250, 0.82);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 12px;
}

.logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover {
  background: var(--accent-muted);
  color: var(--text);
}

.nav a[aria-current="page"] {
  background: var(--accent-muted);
  color: var(--accent);
}

/* —— 主区 / 卡片 —— */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(16px, 3.5vw, 22px) clamp(12px, 3vw, 16px) clamp(24px, 5vw, 36px);
  box-sizing: border-box;
}

.wrap--narrow {
  max-width: var(--narrow);
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(14px, 3.2vw, 20px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.section {
  margin-top: 16px;
}

/* 主页：功能卡片与页签区随视口伸缩，避免子级固定宽度撑破 */
main.wrap > .card {
  overflow-x: clip;
}

.fz-tab-card,
.picjx-tab-card,
.rwt-tab-card,
.gen-tab-card,
.vidgen-tab-card,
.vidref-tab-card,
.vidpose-tab-card,
.vidlip-tab-card,
.vidother-tab-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.fz-tabset,
.picjx-tabset,
.rwt-tabset,
.gen-tabset,
.vidgen-tabset,
.vidref-tabset,
.vidpose-tabset,
.vidlip-tabset,
.vidother-tabset {
  width: 100%;
  min-width: 0;
}

.fz-tab-card .rz-panel,
.picjx-tab-card .rz-panel,
.rwt-tab-card .rz-panel,
.gen-tab-card .rz-panel,
.vidgen-tab-card .rz-panel,
.vidref-tab-card .rz-panel,
.vidpose-tab-card .rz-panel,
.vidlip-tab-card .rz-panel,
.vidother-tab-card .rz-panel {
  min-width: 0;
  max-width: 100%;
}

.fz-panels,
.picjx-panels,
.rwt-panels,
.gen-panels,
.vidgen-panels,
.vidref-panels,
.vidpose-panels,
.vidlip-panels,
.vidother-panels {
  width: 100%;
  min-width: 0;
}

/* —— 按钮 —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.btn:focus-visible {
  box-shadow: var(--focus);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--ghost {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--surface-elevated);
  border-color: var(--line-strong);
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ===== 02-content.css ===== */
/* 通用正文与标题 */
h1 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 600;
  font-family: var(--font);
}

h2,
h3 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sub {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  font-family: var(--font);
}

.muted {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

/* ===== 20-tutorial-docs.css ===== */
/* 教程页 · Tab 与流程图组件 */
.feature-collapsible .rz-panel .rz-line,
.fz-tab-card .rz-panel .rz-line,
.picjx-tab-card .rz-panel .rz-line,
.rwt-tab-card .rz-panel .rz-line,
.gen-tab-card .rz-panel .rz-line,
.vidgen-tab-card .rz-panel .rz-line,
.vidref-tab-card .rz-panel .rz-line,
.vidpose-tab-card .rz-panel .rz-line,
.vidlip-tab-card .rz-panel .rz-line,
.vidother-tab-card .rz-panel .rz-line {
  margin: 0 0 12px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.feature-collapsible .rz-panel .rz-label,
.fz-tab-card .rz-panel .rz-label,
.picjx-tab-card .rz-panel .rz-label,
.rwt-tab-card .rz-panel .rz-label,
.gen-tab-card .rz-panel .rz-label,
.vidgen-tab-card .rz-panel .rz-label,
.vidref-tab-card .rz-panel .rz-label,
.vidpose-tab-card .rz-panel .rz-label,
.vidlip-tab-card .rz-panel .rz-label,
.vidother-tab-card .rz-panel .rz-label {
  font-weight: 600;
  color: var(--text);
  margin-right: 4px;
}

.feature-collapsible .rz-panel .rz-line--tips,
.fz-tab-card .rz-panel .rz-line--tips,
.picjx-tab-card .rz-panel .rz-line--tips,
.rwt-tab-card .rz-panel .rz-line--tips,
.gen-tab-card .rz-panel .rz-line--tips,
.vidgen-tab-card .rz-panel .rz-line--tips,
.vidref-tab-card .rz-panel .rz-line--tips,
.vidpose-tab-card .rz-panel .rz-line--tips,
.vidlip-tab-card .rz-panel .rz-line--tips,
.vidother-tab-card .rz-panel .rz-line--tips {
  color: var(--muted);
  font-size: 13px;
}

.vidgen-tab-card .rz-panel a[href^="http"],
.vidref-tab-card .rz-panel a[href^="http"] {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vidgen-tab-card .rz-panel a[href^="http"]:hover,
.vidref-tab-card .rz-panel a[href^="http"]:hover {
  color: var(--accent-hover);
}

/* 视频灵脉 / 图片灵脉（含服装替换等）：哔哩哔哩嵌入（16:9，双列见 .rz-embed-row） */
.fz-tab-card .rz-embed,
.picjx-tab-card .rz-embed,
.rwt-tab-card .rz-embed,
.gen-tab-card .rz-embed,
.vidgen-tab-card .rz-embed,
.vidref-tab-card .rz-embed,
.vidpose-tab-card .rz-embed,
.vidlip-tab-card .rz-embed,
.vidother-tab-card .rz-embed {
  margin-top: 4px;
}

/* 图片灵脉各卡片：单块嵌入宽度为内容区约一半并居中；视频灵脉仍为全宽 */
.fz-tab-card .rz-embed,
.picjx-tab-card .rz-embed,
.rwt-tab-card .rz-embed,
.gen-tab-card .rz-embed {
  width: 50%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.fz-tab-card .rz-embed-row,
.gen-tab-card .rz-embed-row,
.vidgen-tab-card .rz-embed-row,
.vidref-tab-card .rz-embed-row,
.vidpose-tab-card .rz-embed-row,
.vidlip-tab-card .rz-embed-row,
.vidother-tab-card .rz-embed-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin-top: 4px;
  align-items: start;
}

.fz-tab-card .rz-embed-row .rz-embed,
.gen-tab-card .rz-embed-row .rz-embed,
.vidgen-tab-card .rz-embed-row .rz-embed,
.vidref-tab-card .rz-embed-row .rz-embed {
  margin-top: 0;
}

@media (max-width: 720px) {
  .fz-tab-card .rz-embed-row,
  .gen-tab-card .rz-embed-row,
  .vidgen-tab-card .rz-embed-row,
  .vidref-tab-card .rz-embed-row {
    grid-template-columns: 1fr;
  }
}

.fz-tab-card .rz-line--embed-label,
.gen-tab-card .rz-line--embed-label,
.vidgen-tab-card .rz-line--embed-label,
.vidref-tab-card .rz-line--embed-label,
.vidpose-tab-card .rz-line--embed-label,
.vidlip-tab-card .rz-line--embed-label,
.vidother-tab-card .rz-line--embed-label {
  margin-bottom: 10px;
}

.fz-tab-card .rz-embed__frame,
.gen-tab-card .rz-embed__frame,
.vidgen-tab-card .rz-embed__frame,
.vidref-tab-card .rz-embed__frame,
.vidpose-tab-card .rz-embed__frame,
.vidlip-tab-card .rz-embed__frame,
.vidother-tab-card .rz-embed__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f172a;
}

.fz-tab-card .rz-embed__frame iframe,
.gen-tab-card .rz-embed__frame iframe,
.vidgen-tab-card .rz-embed__frame iframe,
.vidref-tab-card .rz-embed__frame iframe,
.vidpose-tab-card .rz-embed__frame iframe,
.vidlip-tab-card .rz-embed__frame iframe,
.vidother-tab-card .rz-embed__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vidref-tab-card .rz-flow--audio .rz-flow__fig audio,
.vidpose-tab-card .rz-flow--audio .rz-flow__fig audio,
.vidlip-tab-card .rz-flow--audio .rz-flow__fig audio,
.vidother-tab-card .rz-flow--audio .rz-flow__fig audio {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-elevated);
  padding: 10px 12px;
}

.feature-collapsible .rz-panel .rz-flow,
.fz-tab-card .rz-panel .rz-flow,
.picjx-tab-card .rz-panel .rz-flow,
.rwt-tab-card .rz-panel .rz-flow,
.gen-tab-card .rz-panel .rz-flow,
.vidgen-tab-card .rz-panel .rz-flow,
.vidref-tab-card .rz-panel .rz-flow,
.vidpose-tab-card .rz-panel .rz-flow,
.vidlip-tab-card .rz-panel .rz-flow,
.vidother-tab-card .rz-panel .rz-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
  margin-top: 18px;
  flex-wrap: nowrap;
}

.feature-collapsible .rz-panel .rz-flow__fig,
.fz-tab-card .rz-panel .rz-flow__fig,
.picjx-tab-card .rz-panel .rz-flow__fig,
.rwt-tab-card .rz-panel .rz-flow__fig,
.gen-tab-card .rz-panel .rz-flow__fig,
.vidgen-tab-card .rz-panel .rz-flow__fig,
.vidref-tab-card .rz-panel .rz-flow__fig {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  text-align: center;
}

.feature-collapsible .rz-panel .rz-flow__fig img,
.fz-tab-card .rz-panel .rz-flow__fig img,
.picjx-tab-card .rz-panel .rz-flow__fig img,
.rwt-tab-card .rz-panel .rz-flow__fig img,
.gen-tab-card .rz-panel .rz-flow__fig img,
.vidgen-tab-card .rz-panel .rz-flow__fig img,
.vidref-tab-card .rz-panel .rz-flow__fig img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(320px, 42vw);
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-elevated);
}

.feature-collapsible .rz-panel .rz-flow__fig figcaption,
.fz-tab-card .rz-panel .rz-flow__fig figcaption,
.picjx-tab-card .rz-panel .rz-flow__fig figcaption,
.rwt-tab-card .rz-panel .rz-flow__fig figcaption,
.gen-tab-card .rz-panel .rz-flow__fig figcaption,
.vidgen-tab-card .rz-panel .rz-flow__fig figcaption,
.vidref-tab-card .rz-panel .rz-flow__fig figcaption {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* 文生图等：无参考图时用占位块表示「提示词」输入 */
.rz-flow__fig--prompt .rz-prompt-card {
  display: block;
  width: 100%;
  max-height: min(380px, 52vw);
  overflow-y: auto;
  padding: 16px 18px;
  box-sizing: border-box;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-elevated);
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
}

/* 文生图等：箭头右侧并排多张输出图 */
.feature-collapsible .rz-panel .rz-flow > .rz-flow__outputs,
.fz-tab-card .rz-panel .rz-flow > .rz-flow__outputs,
.picjx-tab-card .rz-panel .rz-flow > .rz-flow__outputs,
.rwt-tab-card .rz-panel .rz-flow > .rz-flow__outputs,
.gen-tab-card .rz-panel .rz-flow > .rz-flow__outputs,
.vidgen-tab-card .rz-panel .rz-flow > .rz-flow__outputs,
.vidref-tab-card .rz-panel .rz-flow > .rz-flow__outputs {
  flex: 1 1 0;
  display: flex;
  flex-direction: row;
  gap: clamp(10px, 2vw, 16px);
  min-width: 0;
  align-items: stretch;
}

.feature-collapsible .rz-panel .rz-flow > .rz-flow__outputs .rz-flow__fig,
.fz-tab-card .rz-panel .rz-flow > .rz-flow__outputs .rz-flow__fig,
.picjx-tab-card .rz-panel .rz-flow > .rz-flow__outputs .rz-flow__fig,
.rwt-tab-card .rz-panel .rz-flow > .rz-flow__outputs .rz-flow__fig,
.gen-tab-card .rz-panel .rz-flow > .rz-flow__outputs .rz-flow__fig,
.vidgen-tab-card .rz-panel .rz-flow > .rz-flow__outputs .rz-flow__fig,
.vidref-tab-card .rz-panel .rz-flow > .rz-flow__outputs .rz-flow__fig {
  flex: 1 1 0;
  min-width: 0;
}

.feature-collapsible .rz-panel .rz-flow__bridge,
.fz-tab-card .rz-panel .rz-flow__bridge,
.picjx-tab-card .rz-panel .rz-flow__bridge,
.rwt-tab-card .rz-panel .rz-flow__bridge,
.gen-tab-card .rz-panel .rz-flow__bridge,
.vidgen-tab-card .rz-panel .rz-flow__bridge,
.vidref-tab-card .rz-panel .rz-flow__bridge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.feature-collapsible .rz-panel .rz-arrow-3d,
.fz-tab-card .rz-panel .rz-arrow-3d,
.picjx-tab-card .rz-panel .rz-arrow-3d,
.rwt-tab-card .rz-panel .rz-arrow-3d,
.gen-tab-card .rz-panel .rz-arrow-3d,
.vidgen-tab-card .rz-panel .rz-arrow-3d,
.vidref-tab-card .rz-panel .rz-arrow-3d {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(3px 4px 2px rgba(15, 23, 42, 0.2));
}

.feature-collapsible .rz-panel .rz-arrow-3d svg,
.fz-tab-card .rz-panel .rz-arrow-3d svg,
.picjx-tab-card .rz-panel .rz-arrow-3d svg,
.rwt-tab-card .rz-panel .rz-arrow-3d svg,
.gen-tab-card .rz-panel .rz-arrow-3d svg,
.vidgen-tab-card .rz-panel .rz-arrow-3d svg,
.vidref-tab-card .rz-panel .rz-arrow-3d svg {
  width: clamp(4.25rem, 11vw, 8rem);
  height: auto;
  vertical-align: middle;
}

@media (max-width: 960px) {
  .feature-collapsible .rz-panel .rz-flow,
  .fz-tab-card .rz-panel .rz-flow,
  .picjx-tab-card .rz-panel .rz-flow,
  .rwt-tab-card .rz-panel .rz-flow,
  .gen-tab-card .rz-panel .rz-flow,
  .vidgen-tab-card .rz-panel .rz-flow,
  .vidref-tab-card .rz-panel .rz-flow {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .feature-collapsible .rz-panel .rz-flow__bridge,
  .fz-tab-card .rz-panel .rz-flow__bridge,
  .picjx-tab-card .rz-panel .rz-flow__bridge,
  .rwt-tab-card .rz-panel .rz-flow__bridge,
  .gen-tab-card .rz-panel .rz-flow__bridge,
  .vidgen-tab-card .rz-panel .rz-flow__bridge,
  .vidref-tab-card .rz-panel .rz-flow__bridge {
    padding: 10px 0;
    transform: rotate(90deg);
  }

  .feature-collapsible .rz-panel .rz-flow__fig img,
  .fz-tab-card .rz-panel .rz-flow__fig img,
  .picjx-tab-card .rz-panel .rz-flow__fig img,
  .rwt-tab-card .rz-panel .rz-flow__fig img,
  .gen-tab-card .rz-panel .rz-flow__fig img,
  .vidgen-tab-card .rz-panel .rz-flow__fig img,
  .vidref-tab-card .rz-panel .rz-flow__fig img {
    max-height: 260px;
  }

  .feature-collapsible .rz-panel .fz-flow,
  .fz-tab-card .rz-panel .fz-flow,
  .picjx-tab-card .rz-panel .fz-flow,
  .rwt-tab-card .rz-panel .fz-flow,
  .gen-tab-card .rz-panel .fz-flow,
  .vidgen-tab-card .rz-panel .fz-flow,
  .vidref-tab-card .rz-panel .fz-flow {
    flex-direction: column;
  }

  .feature-collapsible .rz-panel .fz-flow__inputs,
  .fz-tab-card .rz-panel .fz-flow__inputs,
  .picjx-tab-card .rz-panel .fz-flow__inputs,
  .rwt-tab-card .rz-panel .fz-flow__inputs,
  .gen-tab-card .rz-panel .fz-flow__inputs,
  .vidgen-tab-card .rz-panel .fz-flow__inputs,
  .vidref-tab-card .rz-panel .fz-flow__inputs {
    flex-direction: column;
    width: 100%;
  }

  .feature-collapsible .rz-panel .rz-flow > .rz-flow__outputs,
  .fz-tab-card .rz-panel .rz-flow > .rz-flow__outputs,
  .picjx-tab-card .rz-panel .rz-flow > .rz-flow__outputs,
  .rwt-tab-card .rz-panel .rz-flow > .rz-flow__outputs,
  .gen-tab-card .rz-panel .rz-flow > .rz-flow__outputs,
  .vidgen-tab-card .rz-panel .rz-flow > .rz-flow__outputs,
  .vidref-tab-card .rz-panel .rz-flow > .rz-flow__outputs {
    flex-direction: column;
    width: 100%;
  }

  .feature-collapsible .rz-panel .fz-flow__bridge,
  .fz-tab-card .rz-panel .fz-flow__bridge,
  .picjx-tab-card .rz-panel .fz-flow__bridge,
  .rwt-tab-card .rz-panel .fz-flow__bridge,
  .gen-tab-card .rz-panel .fz-flow__bridge,
  .vidgen-tab-card .rz-panel .fz-flow__bridge,
  .vidref-tab-card .rz-panel .fz-flow__bridge {
    padding: 10px 0;
    transform: rotate(90deg);
  }

  .feature-collapsible .rz-panel .fz-flow .rz-flow__fig img,
  .fz-tab-card .rz-panel .fz-flow .rz-flow__fig img,
  .picjx-tab-card .rz-panel .fz-flow .rz-flow__fig img,
  .rwt-tab-card .rz-panel .fz-flow .rz-flow__fig img,
  .gen-tab-card .rz-panel .fz-flow .rz-flow__fig img,
  .vidgen-tab-card .rz-panel .fz-flow .rz-flow__fig img,
  .vidref-tab-card .rz-panel .fz-flow .rz-flow__fig img {
    max-height: 260px;
  }
}

/* 服装替换：双输入 → 输出 */
.feature-collapsible .rz-panel .fz-flow,
.fz-tab-card .rz-panel .fz-flow,
.picjx-tab-card .rz-panel .fz-flow,
.rwt-tab-card .rz-panel .fz-flow,
.gen-tab-card .rz-panel .fz-flow,
.vidgen-tab-card .rz-panel .fz-flow,
.vidref-tab-card .rz-panel .fz-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 16px);
  margin-top: 18px;
  flex-wrap: nowrap;
}

.feature-collapsible .rz-panel .fz-flow__inputs,
.fz-tab-card .rz-panel .fz-flow__inputs,
.picjx-tab-card .rz-panel .fz-flow__inputs,
.rwt-tab-card .rz-panel .fz-flow__inputs,
.gen-tab-card .rz-panel .fz-flow__inputs,
.vidgen-tab-card .rz-panel .fz-flow__inputs,
.vidref-tab-card .rz-panel .fz-flow__inputs {
  display: flex;
  flex: 1.15 1 0;
  gap: 12px;
  min-width: 0;
  align-items: stretch;
}

.feature-collapsible .rz-panel .fz-flow__inputs .rz-flow__fig,
.fz-tab-card .rz-panel .fz-flow__inputs .rz-flow__fig,
.picjx-tab-card .rz-panel .fz-flow__inputs .rz-flow__fig,
.rwt-tab-card .rz-panel .fz-flow__inputs .rz-flow__fig,
.gen-tab-card .rz-panel .fz-flow__inputs .rz-flow__fig,
.vidgen-tab-card .rz-panel .fz-flow__inputs .rz-flow__fig,
.vidref-tab-card .rz-panel .fz-flow__inputs .rz-flow__fig {
  flex: 1 1 0;
  min-width: 0;
}

.feature-collapsible .rz-panel .fz-flow > .rz-flow__fig,
.fz-tab-card .rz-panel .fz-flow > .rz-flow__fig,
.picjx-tab-card .rz-panel .fz-flow > .rz-flow__fig,
.rwt-tab-card .rz-panel .fz-flow > .rz-flow__fig,
.gen-tab-card .rz-panel .fz-flow > .rz-flow__fig,
.vidgen-tab-card .rz-panel .fz-flow > .rz-flow__fig,
.vidref-tab-card .rz-panel .fz-flow > .rz-flow__fig {
  flex: 0.95 1 0;
  min-width: 0;
}

.feature-collapsible .rz-panel .fz-flow .rz-flow__fig img,
.fz-tab-card .rz-panel .fz-flow .rz-flow__fig img,
.picjx-tab-card .rz-panel .fz-flow .rz-flow__fig img,
.rwt-tab-card .rz-panel .fz-flow .rz-flow__fig img,
.gen-tab-card .rz-panel .fz-flow .rz-flow__fig img,
.vidgen-tab-card .rz-panel .fz-flow .rz-flow__fig img,
.vidref-tab-card .rz-panel .fz-flow .rz-flow__fig img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(300px, 36vw);
  object-fit: contain;
}

.feature-collapsible .rz-panel .fz-flow__bridge,
.fz-tab-card .rz-panel .fz-flow__bridge,
.picjx-tab-card .rz-panel .fz-flow__bridge,
.rwt-tab-card .rz-panel .fz-flow__bridge,
.gen-tab-card .rz-panel .fz-flow__bridge,
.vidgen-tab-card .rz-panel .fz-flow__bridge,
.vidref-tab-card .rz-panel .fz-flow__bridge {
  flex-shrink: 0;
}

/* 图片/视频灵脉：多标签页（服装替换、精修、人物造型、图/文生图、视频生成、主体与口型等） */
.fz-tab-input,
.picjx-tab-input,
.rwt-tab-input,
.gen-tab-input,
.vidgen-tab-input,
.vidref-tab-input,
.vidpose-tab-input,
.vidlip-tab-input,
.vidother-tab-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}

.fz-tabset,
.picjx-tabset,
.rwt-tabset,
.gen-tabset,
.vidgen-tabset,
.vidref-tabset,
.vidpose-tabset,
.vidlip-tabset,
.vidother-tabset {
  position: relative;
}

.fz-tab-bar,
.picjx-tab-bar,
.rwt-tab-bar,
.gen-tab-bar,
.vidgen-tab-bar,
.vidref-tab-bar,
.vidpose-tab-bar,
.vidlip-tab-bar,
.vidother-tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--line);
}

.fz-tab,
.picjx-tab,
.rwt-tab,
.gen-tab,
.vidgen-tab,
.vidref-tab,
.vidpose-tab,
.vidlip-tab,
.vidother-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.fz-tab:hover,
.picjx-tab:hover,
.rwt-tab:hover,
.gen-tab:hover,
.vidgen-tab:hover,
.vidref-tab:hover,
.vidpose-tab:hover,
.vidlip-tab:hover,
.vidother-tab:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

/* 视频灵脉：标签宽度随文案 */
.vidgen-tab,
.vidref-tab,
.vidpose-tab,
.vidlip-tab,
.vidother-tab {
  flex: 0 0 auto;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

#fz_tab_1:checked ~ .fz-tab-bar label[for="fz_tab_1"],
#fz_tab_2:checked ~ .fz-tab-bar label[for="fz_tab_2"],
#fz_tab_3:checked ~ .fz-tab-bar label[for="fz_tab_3"],
#fz_tab_4:checked ~ .fz-tab-bar label[for="fz_tab_4"],
#fz_tab_5:checked ~ .fz-tab-bar label[for="fz_tab_5"],
#fz_tab_6:checked ~ .fz-tab-bar label[for="fz_tab_6"],
#fz_tab_7:checked ~ .fz-tab-bar label[for="fz_tab_7"] {
  color: var(--accent);
  background: var(--accent-muted);
  border-color: var(--accent-border);
  font-weight: 600;
}

/* 多标签内容区：块级布局，高度随当前可见页签（图片 / 视频卡片均不占最长 tab 高度） */
.fz-panels,
.picjx-panels,
.rwt-panels,
.gen-panels,
.vidgen-panels,
.vidref-panels,
.vidpose-panels,
.vidlip-panels,
.vidother-panels {
  display: block;
}

/* 图片灵脉：仅显示当前 pane */
.fz-panels > .fz-pane,
.picjx-panels > .picjx-pane,
.rwt-panels > .rwt-pane,
.gen-panels > .gen-pane {
  display: none;
  margin: 0;
  min-width: 0;
  padding-top: 14px;
}

/* 视频灵脉：隐藏态仍可保留过渡属性（与 :checked 规则配合） */
.vidgen-panels > .vidgen-pane,
.vidref-panels > .vidref-pane,
.vidpose-panels > .vidpose-pane,
.vidlip-panels > .vidlip-pane,
.vidother-panels > .vidother-pane {
  display: none;
  margin: 0;
  min-width: 0;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 1.15s ease, visibility 0s linear 1.15s;
}

#fz_tab_1:checked ~ .fz-panels > .fz-pane:nth-child(1),
#fz_tab_2:checked ~ .fz-panels > .fz-pane:nth-child(2),
#fz_tab_3:checked ~ .fz-panels > .fz-pane:nth-child(3),
#fz_tab_4:checked ~ .fz-panels > .fz-pane:nth-child(4),
#fz_tab_5:checked ~ .fz-panels > .fz-pane:nth-child(5),
#fz_tab_6:checked ~ .fz-panels > .fz-pane:nth-child(6),
#fz_tab_7:checked ~ .fz-panels > .fz-pane:nth-child(7) {
  display: block;
}

#picjx_tab_1:checked ~ .picjx-tab-bar label[for="picjx_tab_1"],
#picjx_tab_2:checked ~ .picjx-tab-bar label[for="picjx_tab_2"],
#picjx_tab_3:checked ~ .picjx-tab-bar label[for="picjx_tab_3"],
#picjx_tab_4:checked ~ .picjx-tab-bar label[for="picjx_tab_4"],
#picjx_tab_5:checked ~ .picjx-tab-bar label[for="picjx_tab_5"] {
  color: var(--accent);
  background: var(--accent-muted);
  border-color: var(--accent-border);
  font-weight: 600;
}

#picjx_tab_1:checked ~ .picjx-panels > .picjx-pane:nth-child(1),
#picjx_tab_2:checked ~ .picjx-panels > .picjx-pane:nth-child(2),
#picjx_tab_3:checked ~ .picjx-panels > .picjx-pane:nth-child(3),
#picjx_tab_4:checked ~ .picjx-panels > .picjx-pane:nth-child(4),
#picjx_tab_5:checked ~ .picjx-panels > .picjx-pane:nth-child(5) {
  display: block;
}

#rwt_tab_1:checked ~ .rwt-tab-bar label[for="rwt_tab_1"],
#rwt_tab_2:checked ~ .rwt-tab-bar label[for="rwt_tab_2"],
#rwt_tab_3:checked ~ .rwt-tab-bar label[for="rwt_tab_3"],
#rwt_tab_4:checked ~ .rwt-tab-bar label[for="rwt_tab_4"] {
  color: var(--accent);
  background: var(--accent-muted);
  border-color: var(--accent-border);
  font-weight: 600;
}

#rwt_tab_1:checked ~ .rwt-panels > .rwt-pane:nth-child(1),
#rwt_tab_2:checked ~ .rwt-panels > .rwt-pane:nth-child(2),
#rwt_tab_3:checked ~ .rwt-panels > .rwt-pane:nth-child(3),
#rwt_tab_4:checked ~ .rwt-panels > .rwt-pane:nth-child(4) {
  display: block;
}

#gen_tab_1:checked ~ .gen-tab-bar label[for="gen_tab_1"],
#gen_tab_2:checked ~ .gen-tab-bar label[for="gen_tab_2"],
#gen_tab_3:checked ~ .gen-tab-bar label[for="gen_tab_3"],
#gen_tab_4:checked ~ .gen-tab-bar label[for="gen_tab_4"],
#gen_tab_5:checked ~ .gen-tab-bar label[for="gen_tab_5"],
#gen_tab_6:checked ~ .gen-tab-bar label[for="gen_tab_6"] {
  color: var(--accent);
  background: var(--accent-muted);
  border-color: var(--accent-border);
  font-weight: 600;
}

#gen_tab_1:checked ~ .gen-panels > .gen-pane:nth-child(1),
#gen_tab_2:checked ~ .gen-panels > .gen-pane:nth-child(2),
#gen_tab_3:checked ~ .gen-panels > .gen-pane:nth-child(3),
#gen_tab_4:checked ~ .gen-panels > .gen-pane:nth-child(4),
#gen_tab_5:checked ~ .gen-panels > .gen-pane:nth-child(5),
#gen_tab_6:checked ~ .gen-panels > .gen-pane:nth-child(6) {
  display: block;
}

#vidgen_tab_1:checked ~ .vidgen-tab-bar label[for="vidgen_tab_1"],
#vidgen_tab_2:checked ~ .vidgen-tab-bar label[for="vidgen_tab_2"],
#vidgen_tab_3:checked ~ .vidgen-tab-bar label[for="vidgen_tab_3"],
#vidgen_tab_4:checked ~ .vidgen-tab-bar label[for="vidgen_tab_4"],
#vidgen_tab_5:checked ~ .vidgen-tab-bar label[for="vidgen_tab_5"],
#vidgen_tab_6:checked ~ .vidgen-tab-bar label[for="vidgen_tab_6"],
#vidgen_tab_7:checked ~ .vidgen-tab-bar label[for="vidgen_tab_7"],
#vidgen_tab_8:checked ~ .vidgen-tab-bar label[for="vidgen_tab_8"] {
  color: var(--accent);
  background: var(--accent-muted);
  border-color: var(--accent-border);
  font-weight: 600;
}

#vidgen_tab_1:checked ~ .vidgen-panels > .vidgen-pane:nth-child(1),
#vidgen_tab_2:checked ~ .vidgen-panels > .vidgen-pane:nth-child(2),
#vidgen_tab_3:checked ~ .vidgen-panels > .vidgen-pane:nth-child(3),
#vidgen_tab_4:checked ~ .vidgen-panels > .vidgen-pane:nth-child(4),
#vidgen_tab_5:checked ~ .vidgen-panels > .vidgen-pane:nth-child(5),
#vidgen_tab_6:checked ~ .vidgen-panels > .vidgen-pane:nth-child(6),
#vidgen_tab_7:checked ~ .vidgen-panels > .vidgen-pane:nth-child(7),
#vidgen_tab_8:checked ~ .vidgen-panels > .vidgen-pane:nth-child(8) {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transition: opacity 1.15s ease, visibility 0s;
}

#vidref_tab_1:checked ~ .vidref-tab-bar label[for="vidref_tab_1"],
#vidref_tab_2:checked ~ .vidref-tab-bar label[for="vidref_tab_2"],
#vidref_tab_3:checked ~ .vidref-tab-bar label[for="vidref_tab_3"],
#vidref_tab_4:checked ~ .vidref-tab-bar label[for="vidref_tab_4"],
#vidref_tab_5:checked ~ .vidref-tab-bar label[for="vidref_tab_5"],
#vidref_tab_6:checked ~ .vidref-tab-bar label[for="vidref_tab_6"],
#vidref_tab_7:checked ~ .vidref-tab-bar label[for="vidref_tab_7"] {
  color: var(--accent);
  background: var(--accent-muted);
  border-color: var(--accent-border);
  font-weight: 600;
}

#vidref_tab_1:checked ~ .vidref-panels > .vidref-pane:nth-child(1),
#vidref_tab_2:checked ~ .vidref-panels > .vidref-pane:nth-child(2),
#vidref_tab_3:checked ~ .vidref-panels > .vidref-pane:nth-child(3),
#vidref_tab_4:checked ~ .vidref-panels > .vidref-pane:nth-child(4),
#vidref_tab_5:checked ~ .vidref-panels > .vidref-pane:nth-child(5),
#vidref_tab_6:checked ~ .vidref-panels > .vidref-pane:nth-child(6),
#vidref_tab_7:checked ~ .vidref-panels > .vidref-pane:nth-child(7) {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transition: opacity 1.15s ease, visibility 0s;
}

@media (prefers-reduced-motion: reduce) {
  .vidgen-panels > .vidgen-pane,
  .vidref-panels > .vidref-pane {
    transition-duration: 0.01ms;
  }
}

.feature-collapsible summary:focus-visible {
  outline: none;
  border-radius: 8px;
  box-shadow: var(--focus);
}

.item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface-elevated);
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.item:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--line-strong);
}

.item h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.item p,
.item ul {
  margin: 0;
  color: var(--text-body);
  line-height: 1.7;
  font-size: 13px;
}

.item ul {
  margin-top: 8px;
  padding-left: 1.1em;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.kpi {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--surface-elevated);
}

.kpi b {
  display: block;
  font-size: 14px;
}

.kpi span {
  display: block;
  margin-top: 6px;
  color: var(--text-body);
  font-size: 12px;
  line-height: 1.65;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--surface);
  color: var(--text-body);
  font-size: 12px;
  font-weight: 500;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* ===== 30-hub-topbar.css ===== */
/* —— 全站 Hub 顶栏（主页与子页唯一来源，勿分散覆盖） —— */
body.page-site--hub {
  scrollbar-gutter: stable;
  --hub-topbar-height: 112px;
  --hub-topbar-offset: var(--hub-topbar-height);
  padding-top: var(--hub-topbar-offset);
}

body.page-site--hub .topbar.topbar--hub {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  box-sizing: border-box;
  height: var(--hub-topbar-height);
  background: var(--hub-glass-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hub-gold-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

body.page-site--hub .topbar--hub::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hub-gold), transparent);
  opacity: 0.55;
  pointer-events: none;
}

body.page-site--hub .topbar--hub .topbar-inner {
  max-width: var(--hub-container);
  margin: 0 auto;
  padding: 12px 16px;
  display: grid;
  gap: 12px 16px;
  align-items: center;
  grid-template-columns: 1fr;
  grid-template-areas:
    "brand"
    "nav";
  box-sizing: border-box;
  height: 100%;
}

body.page-site--hub .topbar--hub .brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
}

body.page-site--hub .topbar--hub .brand > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  min-width: 0;
}

body.page-site--hub .topbar--hub .logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin: 0;
}

body.page-site--hub .topbar--hub .nav {
  grid-area: nav;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  min-height: 36px;
}

body.page-site--hub .topbar--hub .nav a {
  box-sizing: border-box;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-height: 36px;
  margin: 0;
  color: var(--hub-text-muted);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

body.page-site--hub .topbar--hub .nav a:hover {
  border-color: var(--hub-gold-border);
  background: rgba(212, 175, 55, 0.08);
  color: var(--hub-gold-bright);
}

body.page-site--hub .topbar--hub .nav a[aria-current="page"] {
  border-color: var(--hub-gold-border-strong);
  background: rgba(212, 175, 55, 0.1);
  color: var(--hub-gold-bright);
  font-weight: 600;
}

body.page-site--hub .brand--landing strong {
  display: block;
  line-height: 1.15;
  font-size: 15px;
  background: linear-gradient(180deg, #f1d37d 0%, #d4af37 55%, #a88420 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.page-site--hub .brand--landing small {
  display: block;
  line-height: 1.15;
  margin-top: 0;
  font-size: 12px;
  color: var(--hub-text-muted);
}

@media (min-width: 1024px) {
  body.page-site--hub .topbar--hub .topbar-inner {
    grid-template-columns: 280px minmax(0, 1fr);
    grid-template-areas: "brand nav";
    align-items: center;
    padding: 0 16px;
  }

  body.page-site--hub .topbar--hub .brand {
    width: 280px;
    max-width: 280px;
    min-width: 280px;
    align-self: center;
  }

  body.page-site--hub .topbar--hub .brand small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.page-site--hub .topbar--hub .nav {
    justify-content: center;
    flex-wrap: nowrap;
    align-self: center;
    width: 100%;
  }
}

/* ===== 31-hub-home.css ===== */
/* —— 官网主页 · 深色金 Hub 风格（对齐消费端 /home，仅 page-home--hub） —— */
body.page-home--hub {
  --hub-bg-deep: #080808;
  --hub-bg-mid: #121212;
  --hub-bg-glow: rgba(212, 175, 55, 0.06);
  --hub-gold: #d4af37;
  --hub-gold-bright: #f0c05a;
  --hub-gold-muted: rgba(212, 175, 55, 0.55);
  --hub-gold-border: rgba(212, 175, 55, 0.22);
  --hub-gold-border-strong: rgba(212, 175, 55, 0.45);
  --hub-text: #f5f5f5;
  --hub-text-muted: rgba(255, 255, 255, 0.55);
  --hub-glass: rgba(18, 18, 18, 0.72);
  --hub-glass-strong: rgba(12, 12, 12, 0.88);
  --hub-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  --hub-shadow-gold: 0 0 24px rgba(212, 175, 55, 0.12);
  --hub-container: 1280px;

  background: var(--hub-bg-mid);
  background-image:
    radial-gradient(ellipse 80% 55% at 50% -10%, var(--hub-bg-glow), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(212, 175, 55, 0.04), transparent 50%),
    linear-gradient(180deg, var(--hub-bg-mid) 0%, var(--hub-bg-deep) 100%);
  color: var(--hub-text);
}

body.page-home--hub::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 0;
}

body.page-home--hub > *:not(.topbar),
body.page-site--hub > *:not(.topbar) {
  position: relative;
  z-index: 1;
}

body.page-home--hub .wrap--hub {
  max-width: var(--hub-container);
  padding: 1.5rem 1.75rem 2.5rem;
}

/* 品牌区 */
body.page-home--hub .hub-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 1rem 2rem;
  margin-bottom: 1rem;
}

body.page-home--hub .hub-brand__decor {
  position: relative;
  width: min(420px, 88%);
  height: 14px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-home--hub .hub-brand__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.15) 20%,
    rgba(212, 175, 55, 0.35) 50%,
    rgba(212, 175, 55, 0.15) 80%,
    transparent 100%
  );
}

body.page-home--hub .hub-brand__diamond {
  position: relative;
  font-size: 0.45rem;
  color: var(--hub-gold);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.45);
}

body.page-home--hub .hub-brand__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

body.page-home--hub .hub-brand__logo {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body.page-home--hub .hub-brand__title {
  margin: 0;
  font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.12em;
  padding-right: 0.12em;
  background: linear-gradient(180deg, #f8e7a8 0%, #f1d37d 18%, #e8c555 42%, #c9a227 72%, #9a7720 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.28));
}

body.page-home--hub .hub-brand__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--hub-gold-bright);
}

body.page-home--hub .hub-brand__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* 分区内的灵脉自媒体 / 灵脉电商式品牌头 */
body.page-home--hub .hub-brand--section {
  margin-bottom: 1.25rem;
  padding: 0.5rem 1rem 1rem;
}

body.page-home--hub .hub-brand--section .hub-brand__title {
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
}

body.page-home--hub .hub-section--media {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

body.page-home--hub .hub-section--toolbox {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

body.page-home--hub .hub-section--services {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

/* 灵脉产品服务 · 订购卡片 */
body.page-home--hub .hub-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

body.page-home--hub .hub-product-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: var(--hub-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

body.page-home--hub .hub-product-card:hover {
  transform: translateY(-2px);
  border-color: var(--hub-gold-border);
  box-shadow: var(--hub-shadow-gold);
}

body.page-home--hub .hub-product-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

body.page-home--hub .hub-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-home--hub .hub-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  padding: 1rem 1.05rem 1.05rem;
}

body.page-home--hub .hub-product-card__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 650;
  color: var(--hub-gold-bright);
  letter-spacing: 0.04em;
}

body.page-home--hub .hub-product-card__desc {
  margin: 0;
  flex: 1;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--hub-text-muted);
}

body.page-home--hub .hub-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-home--hub .hub-product-card__price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hub-gold);
  letter-spacing: 0.06em;
}

body.page-home--hub .hub-product-card__order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1a1408;
  text-decoration: none;
  border-radius: 6px;
  background: linear-gradient(180deg, #f0c05a 0%, #c9a227 100%);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
  transition: filter 0.2s ease, transform 0.2s ease;
}

body.page-home--hub .hub-product-card__order:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

body.page-home--hub .hub-product-services__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 0.5rem 0.15rem;
  text-align: center;
}

body.page-home--hub .hub-product-services__note {
  margin: 0;
  max-width: 42rem;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--hub-text-muted);
}

body.page-home--hub .hub-product-services__cta {
  min-width: 11rem;
}

body.page-home--hub .hub-toolbox-block {
  margin-bottom: 1.75rem;
}

body.page-home--hub .hub-toolbox-block:last-child {
  margin-bottom: 0;
}

body.page-home--hub .hub-section__head--nested {
  margin-top: 0.15rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
}

body.page-home--hub .hub-section--toolbox .hub-section__title {
  font-size: 0.98rem;
}

body.page-home--hub .hub-section__sub--under-brand {
  text-align: center;
  margin: -0.35rem 0 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--hub-text-muted);
  line-height: 1.6;
}

body.page-home--hub .hub-spotlight__media--icon {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.35));
}

body.page-home--hub .hub-spotlight__icon {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.25));
}

body.page-home--hub .hub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.25rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

body.page-home--hub .hub-btn--primary {
  color: var(--hub-bg-deep);
  background: linear-gradient(135deg, var(--hub-gold-bright), var(--hub-gold));
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

body.page-home--hub .hub-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  filter: brightness(1.05);
}

body.page-home--hub .hub-btn--ghost {
  color: var(--hub-gold-bright);
  border: 1px solid var(--hub-gold-border);
  background: transparent;
}

body.page-home--hub .hub-btn--ghost:hover {
  border-color: var(--hub-gold-border-strong);
  background: rgba(212, 175, 55, 0.08);
}

/* 分区 */
body.page-home--hub .hub-section {
  margin-bottom: 2rem;
}

body.page-home--hub .hub-section__head {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-home--hub .hub-section__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hub-text);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

body.page-home--hub .hub-section__title::before {
  content: "◆";
  font-size: 0.55rem;
  color: var(--hub-gold);
}

body.page-home--hub .hub-section__count {
  margin-left: 0.15rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--hub-text-muted);
  letter-spacing: 0.02em;
}

body.page-home--hub .hub-section__sub {
  margin: -0.35rem 0 1rem;
  font-size: 0.88rem;
  color: var(--hub-text-muted);
  line-height: 1.6;
}

body.page-home--hub .hub-section--panel {
  padding: 1.25rem 1.35rem;
  border-radius: 10px;
  background: var(--hub-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Feature card grids（对齐软件 /home） */
body.page-home--hub .hub-card-grid {
  display: grid;
  gap: 0.85rem;
  align-items: stretch;
}

body.page-home--hub .hub-card-grid--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-home--hub .hub-card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.page-home--hub .hub-card-grid .hub-spotlight__card {
  min-width: 0;
}

/* Spotlight */
body.page-home--hub .hub-spotlight-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.page-home--hub .hub-spotlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

body.page-home--hub .hub-spotlight__card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: var(--hub-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

body.page-home--hub .hub-spotlight__card:hover {
  transform: translateY(-3px);
  border-color: var(--hub-gold-border-strong);
  box-shadow: var(--hub-shadow), var(--hub-shadow-gold);
}

body.page-home--hub .hub-spotlight__media {
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

body.page-home--hub .hub-spotlight__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

body.page-home--hub .hub-spotlight__card-title {
  margin: 0;
  padding: 0.75rem 1rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hub-gold-bright);
  letter-spacing: 0.04em;
}

body.page-home--hub .hub-spotlight__btn {
  margin: 0.65rem 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--hub-bg-deep);
  background: linear-gradient(135deg, var(--hub-gold-bright), var(--hub-gold));
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

body.page-home--hub .hub-spotlight__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

body.page-home--hub .hub-spotlight__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 1.5rem 1.6rem;
  border-radius: 10px;
  background: var(--hub-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.06);
}

body.page-home--hub .hub-spotlight__intro-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.05rem;
  width: 100%;
  text-align: center;
}

body.page-home--hub .hub-spotlight__lead {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: var(--hub-gold-bright);
}

body.page-home--hub .hub-spotlight__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  width: 100%;
  max-width: 26rem;
}

body.page-home--hub .hub-spotlight__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 0;
}

body.page-home--hub .hub-spotlight__item-title {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--hub-gold-bright);
}

body.page-home--hub .hub-spotlight__item-detail {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--hub-text-muted);
}

/* 单功能小卡 */
body.page-home--hub .hub-mini-grid {
  display: grid;
  gap: 0.65rem;
}

body.page-home--hub .hub-mini-grid--replace {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

body.page-home--hub .hub-mini-grid--generate {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.page-home--hub .hub-mini-card {
  border-radius: 10px;
  background: var(--hub-glass);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

body.page-home--hub .hub-mini-card:hover {
  border-color: var(--hub-gold-border-strong);
  transform: translateY(-2px);
}

body.page-home--hub .hub-mini-card__media {
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.35);
}

body.page-home--hub .hub-mini-card__media--square {
  aspect-ratio: 1 / 1;
}

body.page-home--hub .hub-mini-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-home--hub .hub-mini-card__title {
  margin: 0;
  padding: 0.55rem 0.45rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  color: var(--hub-gold-bright);
  line-height: 1.35;
}

/* 本地工具 · 循环轮播 */
body.page-home--hub .hub-tools-carousel {
  position: relative;
  margin-top: 0.25rem;
}

body.page-home--hub .hub-tools-carousel__viewport {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

body.page-home--hub .hub-tools-carousel__track {
  display: flex;
  width: max-content;
  animation: hub-tools-marquee var(--hub-marquee-duration, 42s) linear infinite;
}

body.page-home--hub .hub-tools-carousel:hover .hub-tools-carousel__track,
body.page-home--hub .hub-tools-carousel:focus-within .hub-tools-carousel__track {
  animation-play-state: paused;
}

body.page-home--hub .hub-tools-carousel__group {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}

body.page-home--hub .hub-tool-slide {
  flex: 0 0 auto;
  width: clamp(152px, 14vw, 188px);
  border-radius: 12px;
  background: var(--hub-glass);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

body.page-home--hub .hub-tool-slide:hover {
  border-color: var(--hub-gold-border-strong);
  transform: translateY(-2px);
}

body.page-home--hub .hub-tool-slide__media {
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.96);
}

body.page-home--hub .hub-tool-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-home--hub .hub-tool-slide__media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1;
  user-select: none;
}

body.page-home--hub .hub-tool-slide__title {
  margin: 0;
  padding: 0.55rem 0.4rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  color: var(--hub-gold-bright);
  line-height: 1.35;
}

@keyframes hub-tools-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-home--hub .hub-tools-carousel__track {
    animation: none;
  }

  body.page-home--hub .hub-tools-carousel__viewport {
    overflow-x: auto;
    scrollbar-width: thin;
  }
}

/* 本地工具（旧静态网格，保留兼容） */
body.page-home--hub .hub-tools-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

body.page-home--hub .hub-tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 0.65rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

body.page-home--hub .hub-tool-card span {
  font-size: 1.5rem;
  line-height: 1;
}

body.page-home--hub .hub-tool-card h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hub-text);
  line-height: 1.4;
}

/* 下载信息 & 页脚 */
body.page-home--hub .hub-summary-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--hub-text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

body.page-home--hub .hub-summary-list a {
  color: var(--hub-gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.page-home--hub .hub-contact-list {
  list-style: none;
  padding-left: 0;
}

body.page-home--hub .hub-contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--hub-gold-bright);
  font-family: var(--lm-font-display);
}

body.page-home--hub .hub-contact-mail {
  text-decoration: none;
}

body.page-home--hub .hub-contact-mail:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.page-home--hub .hub-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hub-gold-border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--hub-text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body.page-home--hub .hub-footer__beian {
  color: var(--hub-text-muted);
  text-decoration: none;
}

body.page-home--hub .hub-footer__beian:hover {
  color: var(--hub-gold-bright);
}

@media (max-width: 1200px) {
  body.page-home--hub .hub-mini-grid--replace {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.page-home--hub .hub-mini-grid--generate {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.page-home--hub .hub-tools-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  body.page-home--hub .hub-card-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.page-home--hub .wrap--hub {
    padding: 1rem;
  }
  body.page-home--hub .hub-spotlight {
    grid-template-columns: 1fr;
  }
  body.page-home--hub .hub-card-grid--triple,
  body.page-home--hub .hub-card-grid--five {
    grid-template-columns: 1fr;
  }
  body.page-home--hub .hub-product-grid {
    grid-template-columns: 1fr;
  }
  body.page-home--hub .hub-spotlight__list {
    grid-template-columns: 1fr;
  }
  body.page-home--hub .hub-mini-grid--replace,
  body.page-home--hub .hub-mini-grid--generate {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.page-home--hub .hub-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.page-home--hub .topbar--hub .nav,
  body.page-site--hub .topbar--hub .nav {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  body.page-site--hub {
    --hub-topbar-height: 65px;
  }
}

@media (max-width: 1023px) {
  body.page-site--hub .topbar--hub .topbar-inner {
    padding: 12px 16px;
  }
}

/* ===== 32-hub-pages.css ===== */
/* —— 全站子页 · 深色金 Hub 壳层（下载 / FAQ / 协议 / 教程） —— */
body.page-site--hub {
  --hub-bg-deep: #080808;
  --hub-bg-mid: #121212;
  --hub-bg-glow: rgba(212, 175, 55, 0.06);
  --hub-gold: #d4af37;
  --hub-gold-bright: #f0c05a;
  --hub-gold-muted: rgba(212, 175, 55, 0.55);
  --hub-gold-border: rgba(212, 175, 55, 0.22);
  --hub-gold-border-strong: rgba(212, 175, 55, 0.45);
  --hub-text: #f5f5f5;
  --hub-text-muted: rgba(255, 255, 255, 0.55);
  --hub-glass: rgba(18, 18, 18, 0.72);
  --hub-glass-strong: rgba(12, 12, 12, 0.88);
  --hub-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  --hub-shadow-gold: 0 0 24px rgba(212, 175, 55, 0.12);
  --hub-container: 1280px;

  background: var(--hub-bg-mid);
  background-image:
    radial-gradient(ellipse 80% 55% at 50% -10%, var(--hub-bg-glow), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(212, 175, 55, 0.04), transparent 50%),
    linear-gradient(180deg, var(--hub-bg-mid) 0%, var(--hub-bg-deep) 100%);
  color: var(--hub-text);
}

body.page-site--hub::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 0;
}

body.page-site--hub .wrap {
  max-width: var(--hub-container);
}

body.page-site--hub h2,
body.page-site--hub h3,
body.page-site--hub h4 {
  color: var(--hub-gold-bright);
}

body.page-site--hub .muted,
body.page-site--hub .sub {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

/* 子页主标题（非主页品牌区） */
body.page-site--hub.page-faq h1,
body.page-site--hub.page-terms h1,
body.page-site--hub.page-download h1 {
  background: linear-gradient(180deg, #f8e7a8 0%, #f1d37d 40%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.page-site--hub.page-faq .wrap > div > .muted,
body.page-site--hub.page-terms .wrap > div > .muted {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
}

body.page-site--hub .card {
  background: var(--hub-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--hub-shadow);
  color: var(--hub-text);
}

body.page-site--hub a:not(.hub-btn):not(.hub-spotlight__btn):not(.hub-product-card__order):not(.nav a):not(.brand) {
  color: var(--hub-gold-bright);
}

body.page-site--hub a:not(.hub-btn):not(.hub-spotlight__btn):not(.hub-product-card__order):not(.nav a):not(.brand):hover {
  color: #f8e7a8;
}

body.page-site--hub .footer,
body.page-site--hub .hub-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hub-gold-border);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body.page-site--hub .beian-link,
body.page-site--hub .hub-footer__beian {
  color: var(--hub-text-muted);
  text-decoration: none;
}

body.page-site--hub .beian-link:hover,
body.page-site--hub .hub-footer__beian:hover {
  color: var(--hub-gold-bright);
}

/* 下载页 */
body.page-site--hub.page-download h2.title {
  color: var(--hub-gold-bright);
  font-weight: 600;
  letter-spacing: 0.03em;
}

body.page-site--hub.page-download .sub {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

body.page-site--hub.page-download .table-wrap {
  border: 1px solid var(--hub-gold-border);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
}

body.page-site--hub.page-download table {
  background: transparent;
  color: rgba(245, 245, 245, 0.9);
}

body.page-site--hub.page-download th,
body.page-site--hub.page-download td {
  color: rgba(245, 245, 245, 0.88);
  background: transparent;
  font-size: 0.84rem;
  line-height: 1.65;
}

body.page-site--hub.page-download th {
  background: rgba(212, 175, 55, 0.12);
  color: var(--hub-gold-bright);
  border-bottom: 1px solid var(--hub-gold-border);
  font-weight: 600;
}

body.page-site--hub.page-download td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: top;
}

body.page-site--hub.page-download tbody tr:hover td {
  background: rgba(212, 175, 55, 0.04);
}

body.page-site--hub.page-download tr:last-child td {
  border-bottom: none;
}

body.page-site--hub.page-download .ver {
  color: var(--hub-gold-bright);
  font-weight: 600;
}

body.page-site--hub.page-download .ver .ver-note {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 400;
}

body.page-site--hub.page-download .notes {
  color: rgba(255, 255, 255, 0.68);
}

body.page-site--hub.page-download .notes strong {
  color: #f8e7a8;
  font-weight: 600;
}

body.page-site--hub.page-download .dl-text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.45;
}

body.page-site--hub.page-download .dl-text .dl-block + .dl-block {
  margin-top: 0.45em;
}

body.page-site--hub.page-download .dl-text strong {
  color: #f5f5f5;
  font-weight: 600;
}

body.page-site--hub.page-download .dl-text a {
  color: #f0c05a;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}

body.page-site--hub.page-download .dl-text a:hover {
  color: #f8e7a8;
}

body.page-site--hub.page-download .muted {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

body.page-site--hub.page-download .muted strong {
  color: var(--hub-gold-bright);
}

body.page-site--hub.page-download .release-date {
  color: rgba(255, 255, 255, 0.52);
  white-space: nowrap;
}

body.page-site--hub code {
  background: rgba(212, 175, 55, 0.1);
  color: var(--hub-gold-bright);
  padding: 0.12em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

body.page-site--hub .state--release {
  background: rgba(13, 154, 78, 0.15);
  color: #6ee7a0;
  border: 1px solid rgba(13, 154, 78, 0.35);
}

body.page-site--hub .state--beta {
  background: rgba(212, 175, 55, 0.12);
  color: var(--hub-gold-bright);
  border: 1px solid var(--hub-gold-border);
}

body.page-site--hub .state--dev {
  background: rgba(77, 124, 254, 0.12);
  color: #93b4ff;
  border: 1px solid rgba(77, 124, 254, 0.3);
}

body.page-site--hub .state--invalid {
  background: rgba(255, 255, 255, 0.06);
  color: var(--hub-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ */
body.page-site--hub.page-faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

body.page-site--hub.page-faq details:first-of-type {
  border-top: none;
  padding-top: 0;
}

body.page-site--hub.page-faq summary {
  color: rgba(245, 245, 245, 0.92);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style-position: outside;
}

body.page-site--hub.page-faq summary::-webkit-details-marker {
  color: var(--hub-gold);
}

body.page-site--hub.page-faq summary:hover,
body.page-site--hub.page-faq details[open] summary {
  color: var(--hub-gold-bright);
}

body.page-site--hub.page-faq p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  font-size: 0.9rem;
  max-width: 72ch;
}

/* 用户协议 */
body.page-site--hub.page-terms h2 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--hub-gold-bright);
  letter-spacing: 0.03em;
}

body.page-site--hub.page-terms p,
body.page-site--hub.page-terms li {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-size: 0.9rem;
}

body.page-site--hub.page-terms ol {
  margin: 0;
  padding-left: 1.25em;
}

body.page-site--hub.page-terms li {
  margin: 8px 0;
}

body.page-site--hub.page-terms li::marker {
  color: var(--hub-gold-muted);
}

body.page-site--hub.page-terms .wrap > .card {
  margin-bottom: 14px;
}

body.page-site--hub.page-terms .wrap > .card:last-child {
  margin-bottom: 0;
}

/* 视频教程页 */
body.page-site--hub.page-rh .rh-pane-title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #f8e7a8 0%, #f1d37d 40%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.page-site--hub.page-rh .rh-skill-videos-card .sub {
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 16px;
  font-size: 0.92rem;
}

body.page-site--hub.page-rh .rh-skill-video-item {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem;
}

body.page-site--hub.page-rh .rh-skill-video-item__title {
  color: var(--hub-gold-bright);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

body.page-site--hub.page-rh .rh-skill-video-item__embed .rz-embed__frame {
  border: 1px solid var(--hub-gold-border);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

body.page-site--hub.page-rh .hint,
body.page-site--hub.page-rh .rh-skill-video-item__hint {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  margin: 8px 0 0;
}

body.page-site--hub.page-rh .rh-skill-video-item__hint a {
  color: #f0c05a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.page-site--hub.page-rh .rh-skill-video-item__hint a:hover {
  color: #f8e7a8;
}

body.page-site--hub.page-rh .rh-skill-videos-grid {
  gap: 1rem;
}

/* 主页 Spotlight：仅保留预览卡时居中 */
body.page-home--hub .hub-spotlight:has(> .hub-spotlight__card:only-child) {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

/* 教程页 · 产品功能介绍（自主页迁移） */
body.page-site--hub.page-rh .rh-product-intros-card {
  margin-top: 1.25rem;
}

body.page-site--hub.page-rh .rh-product-intros-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.page-site--hub.page-rh .hub-spotlight--intro-only {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.page-site--hub.page-rh .rh-intro-product-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hub-gold-bright);
}

body.page-site--hub.page-rh .hub-spotlight--intro-only .hub-spotlight__intro {
  border: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
  min-height: 0;
}

body.page-site--hub.page-rh .hub-spotlight--intro-only .hub-spotlight__intro-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
}

body.page-site--hub.page-rh .hub-spotlight--intro-only .hub-spotlight__lead {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

body.page-site--hub.page-rh .hub-spotlight--intro-only .hub-spotlight__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  width: 100%;
}

body.page-site--hub.page-rh .hub-spotlight--intro-only .hub-spotlight__list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

body.page-site--hub.page-rh .hub-spotlight--intro-only .hub-spotlight__item-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hub-gold-bright);
}

body.page-site--hub.page-rh .hub-spotlight--intro-only .hub-spotlight__item-detail {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}


/* 教程页 · 字体与 SKILL 图文区（深色金主题） */
body.page-site--hub.page-rh {
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body.page-site--hub.page-rh .wrap--hub {
  max-width: var(--hub-container);
  padding-bottom: 2.5rem;
}

body.page-site--hub.page-rh .rh-skill-docs {
  margin-top: 0.5rem;
}

body.page-site--hub.page-rh .rh-skill-docs__intro {
  margin: 1.25rem 0 0.5rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

body.page-site--hub.page-rh .rh-skill-docs__intro .rh-pane-title {
  margin-bottom: 8px;
}

body.page-site--hub.page-rh .rh-skill-docs__intro .sub {
  margin: 0;
  max-width: 52rem;
  font-size: 0.92rem;
  line-height: 1.75;
}

body.page-site--hub.page-rh .rh-skill-docs-group__title {
  margin: 1.75rem 0 0.65rem;
  padding-left: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-gold-muted);
}

body.page-site--hub.page-rh .rh-skill-docs-group__title:first-of-type {
  margin-top: 0.25rem;
}

body.page-site--hub.page-rh .rh-skill-docs > .card.section {
  margin-top: 0;
  padding: clamp(14px, 2.2vw, 20px);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.7;
}

body.page-site--hub.page-rh .rh-skill-docs .fz-tab-bar,
body.page-site--hub.page-rh .rh-skill-docs .picjx-tab-bar,
body.page-site--hub.page-rh .rh-skill-docs .rwt-tab-bar,
body.page-site--hub.page-rh .rh-skill-docs .gen-tab-bar,
body.page-site--hub.page-rh .rh-skill-docs .vidgen-tab-bar,
body.page-site--hub.page-rh .rh-skill-docs .vidref-tab-bar {
  gap: 8px;
  padding-bottom: 6px;
  flex-wrap: wrap;
}

body.page-site--hub.page-rh .rh-skill-docs .fz-tab,
body.page-site--hub.page-rh .rh-skill-docs .picjx-tab,
body.page-site--hub.page-rh .rh-skill-docs .rwt-tab,
body.page-site--hub.page-rh .rh-skill-docs .gen-tab,
body.page-site--hub.page-rh .rh-skill-docs .vidgen-tab,
body.page-site--hub.page-rh .rh-skill-docs .vidref-tab {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 500;
}

body.page-site--hub.page-rh .rh-skill-docs .fz-tab:hover,
body.page-site--hub.page-rh .rh-skill-docs .picjx-tab:hover,
body.page-site--hub.page-rh .rh-skill-docs .rwt-tab:hover,
body.page-site--hub.page-rh .rh-skill-docs .gen-tab:hover,
body.page-site--hub.page-rh .rh-skill-docs .vidgen-tab:hover,
body.page-site--hub.page-rh .rh-skill-docs .vidref-tab:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--hub-gold-bright);
  border-color: var(--hub-gold-border);
}

body.page-site--hub.page-rh .rh-skill-docs .rz-panel {
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px 16px;
}

body.page-site--hub.page-rh .rh-skill-docs .rz-panel .rz-line {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.75;
}

body.page-site--hub.page-rh .rh-skill-docs .rz-panel .rz-label {
  color: var(--hub-gold-bright);
  font-weight: 600;
}

body.page-site--hub.page-rh .rh-skill-docs .rz-panel .rz-line--tips {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

body.page-site--hub.page-rh .rh-skill-docs .rz-panel .rz-line--embed-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

body.page-site--hub.page-rh .rh-skill-docs .rz-panel .rz-line--embed-label .rz-label {
  color: var(--hub-gold-bright);
}

body.page-site--hub.page-rh .rh-skill-docs .rz-panel a {
  color: #f0c05a;
  text-underline-offset: 2px;
}

body.page-site--hub.page-rh .rh-skill-docs .rz-panel a:hover {
  color: #f8e7a8;
}

body.page-site--hub.page-rh .rh-skill-docs .rz-panel strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

body.page-site--hub.page-rh .rh-skill-docs .rz-flow__fig figcaption {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

body.page-site--hub.page-rh .rh-skill-docs .rz-embed__frame {
  border: 1px solid var(--hub-gold-border);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

body.page-site--hub.page-rh .rh-skill-videos-card + .rh-skill-docs {
  margin-top: 0;
}

body.page-site--hub.page-rh .rh-skill-docs #fz_tab_1:checked ~ .fz-tab-bar label[for="fz_tab_1"],
body.page-site--hub.page-rh .rh-skill-docs #fz_tab_2:checked ~ .fz-tab-bar label[for="fz_tab_2"],
body.page-site--hub.page-rh .rh-skill-docs #fz_tab_3:checked ~ .fz-tab-bar label[for="fz_tab_3"],
body.page-site--hub.page-rh .rh-skill-docs #fz_tab_4:checked ~ .fz-tab-bar label[for="fz_tab_4"],
body.page-site--hub.page-rh .rh-skill-docs #fz_tab_5:checked ~ .fz-tab-bar label[for="fz_tab_5"],
body.page-site--hub.page-rh .rh-skill-docs #fz_tab_6:checked ~ .fz-tab-bar label[for="fz_tab_6"],
body.page-site--hub.page-rh .rh-skill-docs #fz_tab_7:checked ~ .fz-tab-bar label[for="fz_tab_7"],
body.page-site--hub.page-rh .rh-skill-docs #picjx_tab_1:checked ~ .picjx-tab-bar label[for="picjx_tab_1"],
body.page-site--hub.page-rh .rh-skill-docs #picjx_tab_2:checked ~ .picjx-tab-bar label[for="picjx_tab_2"],
body.page-site--hub.page-rh .rh-skill-docs #picjx_tab_3:checked ~ .picjx-tab-bar label[for="picjx_tab_3"],
body.page-site--hub.page-rh .rh-skill-docs #picjx_tab_4:checked ~ .picjx-tab-bar label[for="picjx_tab_4"],
body.page-site--hub.page-rh .rh-skill-docs #picjx_tab_5:checked ~ .picjx-tab-bar label[for="picjx_tab_5"],
body.page-site--hub.page-rh .rh-skill-docs #rwt_tab_1:checked ~ .rwt-tab-bar label[for="rwt_tab_1"],
body.page-site--hub.page-rh .rh-skill-docs #rwt_tab_2:checked ~ .rwt-tab-bar label[for="rwt_tab_2"],
body.page-site--hub.page-rh .rh-skill-docs #rwt_tab_3:checked ~ .rwt-tab-bar label[for="rwt_tab_3"],
body.page-site--hub.page-rh .rh-skill-docs #rwt_tab_4:checked ~ .rwt-tab-bar label[for="rwt_tab_4"],
body.page-site--hub.page-rh .rh-skill-docs #gen_tab_1:checked ~ .gen-tab-bar label[for="gen_tab_1"],
body.page-site--hub.page-rh .rh-skill-docs #gen_tab_2:checked ~ .gen-tab-bar label[for="gen_tab_2"],
body.page-site--hub.page-rh .rh-skill-docs #gen_tab_3:checked ~ .gen-tab-bar label[for="gen_tab_3"],
body.page-site--hub.page-rh .rh-skill-docs #gen_tab_4:checked ~ .gen-tab-bar label[for="gen_tab_4"],
body.page-site--hub.page-rh .rh-skill-docs #gen_tab_5:checked ~ .gen-tab-bar label[for="gen_tab_5"],
body.page-site--hub.page-rh .rh-skill-docs #gen_tab_6:checked ~ .gen-tab-bar label[for="gen_tab_6"],
body.page-site--hub.page-rh .rh-skill-docs #vidgen_tab_1:checked ~ .vidgen-tab-bar label[for="vidgen_tab_1"],
body.page-site--hub.page-rh .rh-skill-docs #vidgen_tab_2:checked ~ .vidgen-tab-bar label[for="vidgen_tab_2"],
body.page-site--hub.page-rh .rh-skill-docs #vidgen_tab_3:checked ~ .vidgen-tab-bar label[for="vidgen_tab_3"],
body.page-site--hub.page-rh .rh-skill-docs #vidgen_tab_4:checked ~ .vidgen-tab-bar label[for="vidgen_tab_4"],
body.page-site--hub.page-rh .rh-skill-docs #vidgen_tab_5:checked ~ .vidgen-tab-bar label[for="vidgen_tab_5"],
body.page-site--hub.page-rh .rh-skill-docs #vidgen_tab_6:checked ~ .vidgen-tab-bar label[for="vidgen_tab_6"],
body.page-site--hub.page-rh .rh-skill-docs #vidgen_tab_7:checked ~ .vidgen-tab-bar label[for="vidgen_tab_7"],
body.page-site--hub.page-rh .rh-skill-docs #vidgen_tab_8:checked ~ .vidgen-tab-bar label[for="vidgen_tab_8"],
body.page-site--hub.page-rh .rh-skill-docs #vidref_tab_1:checked ~ .vidref-tab-bar label[for="vidref_tab_1"],
body.page-site--hub.page-rh .rh-skill-docs #vidref_tab_2:checked ~ .vidref-tab-bar label[for="vidref_tab_2"],
body.page-site--hub.page-rh .rh-skill-docs #vidref_tab_3:checked ~ .vidref-tab-bar label[for="vidref_tab_3"],
body.page-site--hub.page-rh .rh-skill-docs #vidref_tab_4:checked ~ .vidref-tab-bar label[for="vidref_tab_4"],
body.page-site--hub.page-rh .rh-skill-docs #vidref_tab_5:checked ~ .vidref-tab-bar label[for="vidref_tab_5"],
body.page-site--hub.page-rh .rh-skill-docs #vidref_tab_6:checked ~ .vidref-tab-bar label[for="vidref_tab_6"],
#vidref_tab_7:checked ~ .vidref-tab-bar label[for="vidref_tab_7"] {
  color: #1a1408;
  background: linear-gradient(180deg, #f8e7a8 0%, #e8c65a 45%, #d4af37 100%);
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.28);
}

/* 优量汇广告联调 / 嵌入 */
body.page-site--hub.page-ad-test h1 {
  background: linear-gradient(180deg, #f8e7a8 0%, #f1d37d 40%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
}

body.page-site--hub.page-ad-test .ad-test-lead {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

body.page-site--hub.page-ad-test .ad-test-kv {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

body.page-site--hub.page-ad-test .ad-test-kv > div {
  display: grid;
  grid-template-columns: minmax(7.5rem, auto) 1fr;
  gap: 0.75rem 1rem;
  align-items: baseline;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--hub-gold-border);
  font-size: 0.9rem;
  line-height: 1.5;
}

body.page-site--hub.page-ad-test .ad-test-kv dt {
  margin: 0;
  color: var(--hub-gold-muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

body.page-site--hub.page-ad-test .ad-test-kv dd {
  margin: 0;
  color: var(--hub-text);
  word-break: break-all;
}

body.page-site--hub.page-ad-test .ad-test-kv code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  color: var(--hub-gold-bright);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

body.page-site--hub.page-ad-test .ad-test-note {
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--hub-gold);
  background: rgba(212, 175, 55, 0.06);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.65;
}

body.page-site--hub.page-ad-test .ad-test-status,
body.page-ad-embed .ad-test-status {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.32);
  color: rgba(255, 255, 255, 0.78);
}

body.page-site--hub.page-ad-test .ad-test-status.ok,
body.page-ad-embed .ad-test-status.ok {
  border-color: rgba(72, 187, 120, 0.45);
  background: rgba(72, 187, 120, 0.12);
  color: #9ae6b4;
}

body.page-site--hub.page-ad-test .ad-test-status.warn,
body.page-ad-embed .ad-test-status.warn {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.1);
  color: #f0d78c;
}

body.page-site--hub.page-ad-test .ad-test-status.err,
body.page-ad-embed .ad-test-status.err {
  border-color: rgba(245, 101, 101, 0.45);
  background: rgba(245, 101, 101, 0.12);
  color: #feb2b2;
}

body.page-site--hub.page-ad-test .ad-test-preview {
  margin: 0 0 1.25rem;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--hub-gold-border-strong);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 0 32px rgba(0, 0, 0, 0.35);
}

body.page-site--hub.page-ad-test .ad-test-preview .muted {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.9rem;
}

body.page-site--hub.page-ad-test .ad-test-preview img,
.ylh-ad-card img {
  max-width: 100%;
  max-height: 320px;
  display: block;
  margin: 0 auto;
}

body.page-site--hub.page-ad-test .ad-test-preview button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  width: 100%;
}

body.page-site--hub.page-ad-test .ad-test-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.ylh-ad-card {
  width: 100%;
  text-align: center;
}

.ylh-ad-card a {
  display: block;
}

.ylh-ad-caption {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

@media (max-width: 720px) {
  body.page-site--hub.page-ad-test .ad-test-kv > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  body.page-site--hub.page-download .table-wrap {
    overflow-x: auto;
  }

  body.page-site--hub.page-download table {
    min-width: 720px;
  }
}

/* ===== 33-hub-contact.css ===== */
/* —— 微信服务号 · 全站联系区块与页脚 —— */

.hub-wechat-contact__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.hub-wechat-contact__qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hub-wechat-contact__qr {
  display: block;
  width: 168px;
  height: 168px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--hub-gold-border-strong, rgba(212, 175, 55, 0.45));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hub-wechat-contact__scan {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--hub-gold-muted, rgba(212, 175, 55, 0.55));
}

.hub-wechat-contact__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-gold-muted, rgba(212, 175, 55, 0.55));
}

.hub-wechat-contact__heading {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--hub-gold-bright, #f0c05a);
}

.hub-wechat-contact__lead {
  margin: 0 0 0.85rem;
  max-width: 52ch;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--hub-text-muted, rgba(255, 255, 255, 0.55));
}

.hub-wechat-contact__list {
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.hub-wechat-contact__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.88);
}

.hub-wechat-contact__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hub-gold, #d4af37);
}

.hub-wechat-contact__meta {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.hub-wechat-contact__meta strong {
  color: var(--hub-gold-bright, #f0c05a);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hub-wechat-contact__mail {
  color: var(--hub-gold-bright, #f0c05a);
  text-decoration: none;
}

.hub-wechat-contact__mail:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hub-wechat-contact__hint {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

body.page-site--hub .hub-wechat-contact {
  margin-top: 1.5rem;
}

body.page-site--hub .hub-wechat-contact.hub-section--panel {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-radius: 10px;
  border: 1px solid var(--hub-gold-border, rgba(212, 175, 55, 0.22));
  background: rgba(0, 0, 0, 0.28);
}

body.page-site--hub .hub-wechat-contact .hub-section__head {
  margin-bottom: 0.75rem;
}

body.page-site--hub .hub-wechat-contact .hub-section__title {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--hub-gold-bright, #f0c05a);
  letter-spacing: 0.04em;
}

body.page-site--hub.page-faq .hub-wechat-contact,
body.page-site--hub.page-terms .hub-wechat-contact {
  margin-top: 1.25rem;
}

body.page-site--hub.page-download .hub-wechat-contact {
  margin-top: 1.5rem;
}

body.page-site--hub.page-download .hub-wechat-contact .hub-section__head {
  margin-bottom: 0.75rem;
}

body.page-site--hub.page-download .hub-wechat-contact.hub-section--panel {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-radius: 10px;
  border: 1px solid var(--hub-gold-border, rgba(212, 175, 55, 0.22));
  background: rgba(0, 0, 0, 0.28);
}

/* 下载页：服务号二维码固定右上角（顶栏下方） */
body.page-download .hub-qr-fixed {
  position: fixed;
  top: calc(var(--hub-topbar-height, 112px) + 12px);
  right: 16px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 168px;
  padding: 14px 14px 12px;
  border-radius: 12px;
  border: 1px solid var(--hub-gold-border, rgba(212, 175, 55, 0.28));
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.page-download .hub-qr-fixed__img {
  display: block;
  width: 140px;
  height: 140px;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  object-fit: contain;
}

body.page-download .hub-qr-fixed__label {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--hub-gold-bright, #f0c05a);
  text-align: center;
  white-space: nowrap;
}

body.page-download .hub-qr-fixed__sub {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(240, 192, 90, 0.78);
  text-align: center;
}

body.page-download .hub-wechat-contact__inner--text {
  display: block;
  grid-template-columns: none;
}

body.page-download .hub-wechat-contact--text-only .hub-wechat-contact__lead {
  max-width: 42rem;
}

@media (max-width: 900px) {
  body.page-download .hub-qr-fixed {
    width: 140px;
    padding: 12px 12px 10px;
    right: 12px;
    top: calc(var(--hub-topbar-height, 112px) + 8px);
  }

  body.page-download .hub-qr-fixed__img {
    width: 116px;
    height: 116px;
    padding: 5px;
  }

  body.page-download .hub-qr-fixed__label {
    font-size: 0.72rem;
  }

  body.page-download .hub-qr-fixed__sub {
    font-size: 0.65rem;
  }
}

@media (max-width: 640px) {
  body.page-download .hub-qr-fixed {
    width: 118px;
    right: 8px;
    padding: 10px 10px 8px;
  }

  body.page-download .hub-qr-fixed__img {
    width: 96px;
    height: 96px;
  }

  body.page-download .hub-qr-fixed__label {
    font-size: 0.68rem;
  }

  body.page-download .hub-qr-fixed__sub {
    font-size: 0.6rem;
    max-width: 100px;
  }
}

/* 页脚服务号条 */
.hub-footer--with-follow {
  gap: 1rem;
}

.hub-footer-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--hub-gold-border, rgba(212, 175, 55, 0.22));
  background: rgba(0, 0, 0, 0.22);
  max-width: 36rem;
  margin: 0 auto;
  text-align: left;
}

.hub-footer-follow__qr {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  padding: 4px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--hub-gold-border, rgba(212, 175, 55, 0.22));
}

.hub-footer-follow__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.hub-footer-follow__text strong {
  font-size: 0.92rem;
  color: var(--hub-gold-bright, #f0c05a);
  font-weight: 600;
}

.hub-footer-follow__text span {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
}

.hub-footer__copy {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .hub-wechat-contact__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hub-wechat-contact__lead,
  .hub-wechat-contact__list {
    max-width: none;
  }

  .hub-wechat-contact__list li {
    text-align: left;
  }
}

/* 主页 · 漂浮服务号公告 */
.hub-float-promo {
  position: fixed;
  z-index: 2147483000;
  top: 0;
  left: 0;
  width: min(360px, calc(100vw - 24px));
  border-radius: 10px;
  border: 1px solid var(--hub-gold-border-strong, rgba(212, 175, 55, 0.45));
  background: rgba(12, 10, 8, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  will-change: transform;
  pointer-events: auto;
  visibility: visible;
}

.hub-float-promo__header {
  height: 30px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(212, 175, 55, 0.08);
  color: #f5e6c8;
  font-size: 12px;
  user-select: none;
}

.hub-float-promo__close {
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
  min-width: 18px;
}

.hub-float-promo__close:hover {
  color: #fff;
}

.hub-float-promo__image {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== 34-hub-product-services.css ===== */
/* 灵脉产品服务 · 独立详情页 */

body.page-product-services .wrap--product-services {
  max-width: var(--hub-container, 1280px);
  padding-bottom: 2.5rem;
}

body.page-product-services h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #f8e7a8 0%, #f1d37d 40%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.page-product-services .hub-ps-hero {
  margin-bottom: 2rem;
}

body.page-product-services .hub-ps-hero__lead {
  margin: 0;
  max-width: 52rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

body.page-product-services .hub-ps-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

body.page-product-services .hub-ps-hero__tags li {
  padding: 0.28rem 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--hub-gold-bright);
  border: 1px solid var(--hub-gold-border);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
}

body.page-product-services .hub-ps-section {
  margin-bottom: 2.25rem;
}

body.page-product-services .hub-ps-section__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--hub-gold-bright);
  letter-spacing: 0.04em;
}

body.page-product-services .hub-ps-section__sub {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
  max-width: 48rem;
}

body.page-product-services .hub-ps-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1rem;
}

body.page-product-services .hub-ps-product {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: var(--hub-glass);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  scroll-margin-top: 5rem;
}

body.page-product-services .hub-ps-product__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

body.page-product-services .hub-ps-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-product-services .hub-ps-product__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
  padding: 1.1rem 1.15rem 1.15rem;
}

body.page-product-services .hub-ps-product__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--hub-gold-bright);
}

body.page-product-services .hub-ps-product__desc {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

body.page-product-services .hub-ps-product__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

body.page-product-services .hub-ps-product__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

body.page-product-services .hub-ps-product__list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.55rem;
  color: var(--hub-gold-muted);
}

body.page-product-services .hub-ps-product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-product-services .hub-ps-product__price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hub-gold);
}

body.page-product-services .hub-ps-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 0.85rem;
}

body.page-product-services .hub-ps-industry {
  padding: 1rem 1.05rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

body.page-product-services .hub-ps-industry__title {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hub-gold-bright);
}

body.page-product-services .hub-ps-industry__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body.page-product-services .hub-ps-industry__list li {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

body.page-product-services .hub-ps-cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 0.75rem;
}

body.page-product-services .hub-ps-cap {
  padding: 0.85rem 0.95rem;
  border-radius: 8px;
  border: 1px solid var(--hub-gold-border);
  background: rgba(212, 175, 55, 0.05);
}

body.page-product-services .hub-ps-cap__title {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hub-gold-bright);
}

body.page-product-services .hub-ps-cap__text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

body.page-product-services .hub-ps-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: ps-step;
}

body.page-product-services .hub-ps-steps li {
  counter-increment: ps-step;
  padding: 1rem;
  border-radius: 10px;
  background: var(--hub-glass);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-product-services .hub-ps-steps li::before {
  content: counter(ps-step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--hub-gold);
}

body.page-product-services .hub-ps-steps strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

body.page-product-services .hub-ps-steps span {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.52);
}

body.page-product-services .hub-ps-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--hub-gold-border);
}

body.page-product-services .hub-ps-toc a {
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, color 0.2s ease;
}

body.page-product-services .hub-ps-toc a:hover {
  color: var(--hub-gold-bright);
  border-color: var(--hub-gold-border);
}

body.page-product-services .hub-ps-note {
  margin: 1.25rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--hub-gold);
  background: rgba(212, 175, 55, 0.06);
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}

body.page-product-services details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

body.page-product-services details:first-of-type {
  border-top: none;
  padding-top: 0;
}

body.page-product-services summary {
  color: rgba(245, 245, 245, 0.92);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

body.page-product-services summary:hover,
body.page-product-services details[open] summary {
  color: var(--hub-gold-bright);
}

body.page-product-services details p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  font-size: 0.9rem;
}

/* 首页 · 产品服务精简预览 */
body.page-home--hub .hub-product-teaser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

body.page-home--hub .hub-product-teaser__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

body.page-home--hub .hub-product-teaser__item:hover {
  border-color: var(--hub-gold-border);
  transform: translateY(-1px);
}

body.page-home--hub .hub-product-teaser__thumb {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

body.page-home--hub .hub-product-teaser__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-home--hub .hub-product-teaser__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hub-gold-bright);
  letter-spacing: 0.03em;
}

body.page-home--hub .hub-product-teaser__more {
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

/* 详情页订购按钮：深色字 + 金色渐变（避免被 page-site--hub 链接金色字覆盖） */
body.page-product-services .hub-product-card__order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--hub-bg-deep);
  text-decoration: none;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--hub-gold-bright), var(--hub-gold));
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-product-services .hub-product-card__order:hover {
  color: var(--hub-bg-deep);
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}
