:root {
  --hue-primary: #72b6dd;
  --hue-primary-dark: #4d99c6;
  --hue-primary-light: #eef7fc;
  --hue-bg-soft: #f8fafc;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(114, 182, 221, 0.22);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #0f172a;
  line-height: 1.65;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* 导航栏复用与规范 */
.scalar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(114, 182, 221, 0.2);
}

.vortex {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.glyph {
  display: flex;
  align-items: center;
  min-width: 0;
}

.glyph img {
  height: 32px;
  width: auto;
  display: block;
}

.axis {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.vortex-trace {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.35s ease;
  min-width: 0;
}

.vortex-trace:hover,
.vortex-trace.active {
  color: #4d99c6;
  font-weight: 600;
}

.prism {
  display: flex;
  align-items: center;
  min-width: 0;
}

.pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  min-width: 0;
  border: 1px solid transparent;
}

.pulse:hover {
  background-color: var(--hue-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* 主内容容器与通用版心 */
.vault {
  width: 100%;
  margin: 0 auto;
}

.sphere {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 顶层区块 1: 场景赋能 */
.focal {
  padding: 70px 0 80px;
  background: linear-gradient(145deg, #f8fafc 0%, #eef6fc 50%, #ffffff 100%);
  border-bottom: 1px solid rgba(114, 182, 221, 0.15);
}

.focal-layer {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.focal-spark {
  flex: 1 1 500px;
  min-width: 0;
}

.focal-glare {
  flex: 1 1 450px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(114, 182, 221, 0.3);
  box-shadow: var(--shadow-lg);
}

.index {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  white-space: normal;
}

.index-sub {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  white-space: normal;
}

.metric {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 24px;
}

.anchor {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.shard {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(114, 182, 221, 0.25);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  flex: 1 1 100%;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.shard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--hue-primary);
}

.vector {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--hue-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vector svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--hue-primary-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 顶层区块 2: 金融行业 */
.zenith {
  padding: 90px 0;
  background: #ffffff;
}

.zenith-vault {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.zenith-glare {
  flex: 1 1 100%;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}

.spark-layer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  width: 100%;
}

.node {
  background: var(--hue-bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(114, 182, 221, 0.2);
  transition: all 0.35s ease;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.node:hover {
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.node-head {
  margin-bottom: 20px;
}

.datum-vision {
  display: inline-block;
  padding: 4px 12px;
  background: var(--hue-primary-light);
  color: var(--hue-primary-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* 实时UI组件示例(SVG & 数据矩阵) */
.ui-monitor {
  background: #0f172a;
  border-radius: var(--radius-md);
  padding: 16px;
  color: #38bdf8;
  font-family: monospace;
  font-size: 13px;
  margin-top: 16px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.ui-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.ui-row:last-child {
  border-bottom: none;
}

/* 顶层区块 3: 电商与零售 */
.orbit {
  padding: 90px 0;
  background: var(--hue-bg-soft);
  border-top: 1px solid rgba(114, 182, 221, 0.15);
  border-bottom: 1px solid rgba(114, 182, 221, 0.15);
}

.layer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.facet-shard {
  flex: 1 1 340px;
  min-width: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(114, 182, 221, 0.25);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.facet-shard:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--hue-primary);
}

.chart-graphic {
  height: 120px;
  width: 100%;
  margin: 16px 0;
  background: var(--hue-primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 12px;
}

.chart-spark {
  width: 18%;
  background: var(--hue-primary-dark);
  border-radius: 4px 4px 0 0;
  transition: height 0.35s ease;
}

/* 顶层区块 4: 企业级服务保障 */
.shard-vault {
  padding: 90px 0;
  background: #ffffff;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.security-node {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.security-node::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--hue-primary);
}

.security-node:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pulse-box {
  margin-top: 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.pulse-box .index-sub {
  color: #ffffff;
}

.trigger-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 32px;
  background: var(--hue-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-md);
  transition: all 0.35s ease;
  margin-top: 20px;
}

.trigger-pulse:hover {
  background: var(--hue-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(114, 182, 221, 0.4);
}

/* 页脚样式与底座设计 */
.pivot {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bedrock {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.datum-col {
  flex: 1 1 200px;
  min-width: 0;
}

.datum-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.datum-col a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.35s ease;
}

.datum-col a:hover {
  color: var(--hue-primary);
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.bottom-spark {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .vortex {
    flex-direction: column;
    gap: 16px;
  }
  .axis {
    gap: 14px;
    justify-content: center;
  }
  .index {
    font-size: 28px;
  }
  .index-sub {
    font-size: 22px;
  }
  .focal-layer {
    flex-direction: column;
  }
  .spark-layer,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }
}

.vortex-scalar {
    font-family: var(--font-main);
    line-height: 1.65;
    word-break: break-word;
    color: var(--hue-slate);
}
.vortex-scalar,
.vortex-scalar *,
.vortex-scalar *::before,
.vortex-scalar *::after {
    box-sizing: border-box;
}

.vortex-scalar nav,
.vortex-scalar div,
.vortex-scalar section,
.vortex-scalar article,
.vortex-scalar aside,
.vortex-scalar p,
.vortex-scalar h1,
.vortex-scalar h2,
.vortex-scalar h3,
.vortex-scalar h4,
.vortex-scalar h5,
.vortex-scalar h6,
.vortex-scalar a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.vortex-scalar p,
.vortex-scalar h1,
.vortex-scalar h2,
.vortex-scalar h3,
.vortex-scalar h4,
.vortex-scalar h5,
.vortex-scalar h6 {
    text-decoration: none;
}

.vortex-scalar img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.vortex-scalar {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.vortex-scalar a.vortex-vortex-trace {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.vortex-scalar a.vortex-vortex-trace,
.vortex-scalar a.vortex-vortex-trace:hover,
.vortex-scalar a.vortex-vortex-trace:focus,
.vortex-scalar a.vortex-vortex-trace:active,
.vortex-scalar a.vortex-vortex-trace.active,
.vortex-scalar a.vortex-vortex-trace[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.vortex-scalar{
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
        }

.vortex-scalar .vortex-vortex{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

.vortex-scalar .vortex-glyph{
            display: flex;
            align-items: center;
            gap: 12px;
        }

.vortex-scalar .vortex-glyph img{
            height: 34px;
            width: auto;
            display: block;
        }

.vortex-scalar .vortex-axis{
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

.vortex-scalar .vortex-vortex-trace{
            text-decoration: none;
            color: #475569;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.35s ease;
        }

.vortex-scalar .vortex-vortex-trace:hover, .vortex-scalar .vortex-vortex-trace.active{
            color: #4d99c6;
            background-color: #eef7fc;
        }

.vortex-scalar .vortex-prism{
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

.vortex-scalar .vortex-pulse{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 28px;
            background-color: #0f172a;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            border-radius: 8px;
            transition: all 0.35s ease;
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
        }

.vortex-scalar .vortex-pulse:hover{
            background-color: #4d99c6;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(77, 153, 198, 0.3);
        }

@media (max-width: 768px){.vortex-scalar .vortex-vortex{
                height: auto;
                padding: 16px;
                flex-direction: column;
                gap: 16px;
            }

.vortex-scalar .vortex-axis{
                width: 100%;
                justify-content: center;
            }}

.vortex-scalar {
    background: rgb(255, 255, 255);
    background-image: none;
}

.bedrock-pivot {
    font-family: var(--font-main);
    line-height: 1.65;
    word-break: break-word;
    color: var(--hue-slate);
}
.bedrock-pivot,
.bedrock-pivot *,
.bedrock-pivot *::before,
.bedrock-pivot *::after {
    box-sizing: border-box;
}

.bedrock-pivot nav,
.bedrock-pivot div,
.bedrock-pivot section,
.bedrock-pivot article,
.bedrock-pivot aside,
.bedrock-pivot p,
.bedrock-pivot h1,
.bedrock-pivot h2,
.bedrock-pivot h3,
.bedrock-pivot h4,
.bedrock-pivot h5,
.bedrock-pivot h6,
.bedrock-pivot a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.bedrock-pivot p,
.bedrock-pivot h1,
.bedrock-pivot h2,
.bedrock-pivot h3,
.bedrock-pivot h4,
.bedrock-pivot h5,
.bedrock-pivot h6 {
    text-decoration: none;
}

.bedrock-pivot img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.bedrock-pivot {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.bedrock-pivot a,
.bedrock-pivot a:hover,
.bedrock-pivot a:focus,
.bedrock-pivot a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.bedrock-pivot .bedrock-vault{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.bedrock-pivot h1.bedrock-index{
            font-size: 38px;
            line-height: 1.25;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 18px;
            letter-spacing: -0.02em;
        }

.bedrock-pivot p.bedrock-metric{
            font-size: 16px;
            color: #475569;
            margin-bottom: 28px;
            line-height: 1.7;
        }

.bedrock-pivot h2.bedrock-index{
            font-size: 30px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }

.bedrock-pivot h3.bedrock-index{
            font-size: 22px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
        }

.bedrock-pivot{
            background-color: #0b1120;
            color: #94a3b8;
            border-top: 1px solid #1e293b;
            padding: 60px 0 40px;
            font-size: 14px;
        }

.bedrock-pivot .bedrock-bedrock{
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            margin-bottom: 40px;
        }

.bedrock-pivot .bedrock-datum{
            flex: 1 1 300px;
            min-width: 0;
        }

.bedrock-pivot .bedrock-brand-name{
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

.bedrock-pivot .bedrock-pivot-links{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.bedrock-pivot .bedrock-pivot-links a{
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.35s ease;
        }

.bedrock-pivot .bedrock-pivot-links a:hover{
            color: #72b6dd;
        }

.bedrock-pivot .bedrock-bottom-metric{
            border-top: 1px solid #1e293b;
            padding-top: 28px;
            text-align: center;
            font-size: 13px;
            color: #64748b;
        }

@media (max-width: 992px){.bedrock-pivot h1.bedrock-index{
                font-size: 32px;
            }}