:root {
  --hue-primary: #72b6dd;
  --hue-primary-dark: #4d99c6;
  --hue-primary-light: #eef7fc;
  --hue-bg-soft: #f8fafc;
  --hue-surface: #ffffff;
  --hue-text: #0f172a;
  --hue-text-muted: #64748b;
  --hue-border: rgba(114, 182, 221, 0.28);
  --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);
  --transition: 0.35s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--hue-surface);
  color: var(--hue-text);
  line-height: 1.65;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Header Styles */
.scalar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hue-border);
  transition: var(--transition);
}

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

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

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

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

.vortex-trace {
  text-decoration: none;
  color: var(--hue-text-muted);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.vortex-trace:hover,
.vortex-trace.active {
  color: var(--hue-primary-dark);
}

.vortex-trace.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--hue-primary-dark);
  border-radius: 2px;
}

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

.pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--hue-text);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: normal;
}

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

/* Main Container & Hero Layout (Offset Overlap Prototype) */
main {
  display: block;
}

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

.focal {
  padding: 70px 0 90px;
  background: linear-gradient(145deg, #f8fafc 0%, #eef6fc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hue-border);
}

.layer {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.anchor {
  flex: 1;
  min-width: 320px;
}

.spark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hue-primary-light);
  color: var(--hue-primary-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(114, 182, 221, 0.4);
}

.spark svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.index {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--hue-text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  white-space: normal;
}

.metric {
  font-size: 17px;
  line-height: 1.7;
  color: var(--hue-text-muted);
  margin-bottom: 32px;
}

.zenith {
  flex: 1;
  min-width: 340px;
  background: rgba(255, 255, 255, 0.95);
  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);
  position: relative;
}

.strand {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

/* Download Cards Grid */
.orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.shard {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  border: 1px solid rgba(114, 182, 221, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.node {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

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

.vector svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.facet {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--hue-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.facet code {
  background: var(--hue-bg-soft);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  color: var(--hue-text);
  font-size: 12px;
  word-break: break-all;
}

.trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--hue-primary-light);
  color: var(--hue-primary-dark);
  border: 1px solid var(--hue-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.trigger:hover {
  background: var(--hue-primary-dark);
  color: #ffffff;
  border-color: var(--hue-primary-dark);
}

.trigger.primary {
  background: var(--hue-text);
  color: #ffffff;
  border-color: var(--hue-text);
}

.trigger.primary:hover {
  background: var(--hue-primary-dark);
  border-color: var(--hue-primary-dark);
}

/* Article Section: Specs & Compatibility Matrix */
.glare {
  padding: 80px 0;
  background: var(--hue-bg-soft);
  border-bottom: 1px solid var(--hue-border);
}

.matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(114, 182, 221, 0.3);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-top: 32px;
}

.matrix-table th,
.matrix-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--hue-bg-soft);
  font-size: 14px;
}

.matrix-table th {
  background: var(--hue-primary-light);
  color: var(--hue-text);
  font-weight: 700;
}

.matrix-table tr:last-child td {
  border-bottom: none;
}

.matrix-table td strong {
  color: var(--hue-text);
}

/* Aside Section: Deployment Architectures */
.sphere {
  padding: 80px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--hue-border);
}

.deploy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.deploy-shard {
  flex: 1;
  min-width: 320px;
  background: linear-gradient(180deg, #ffffff 0%, var(--hue-bg-soft) 100%);
  border: 1px solid rgba(114, 182, 221, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.deploy-shard.featured {
  border: 2px solid var(--hue-primary);
  background: linear-gradient(180deg, #ffffff 0%, var(--hue-primary-light) 100%);
}

.deploy-shard.featured::before {
  content: '推荐企业架构';
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--hue-primary-dark);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
}

.signal-check {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.signal-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--hue-text);
}

.signal-check li svg {
  width: 18px;
  height: 18px;
  fill: var(--hue-primary-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Section Form: Enterprise License Form */
.datum {
  padding: 80px 0;
  background: linear-gradient(145deg, var(--hue-bg-soft) 0%, #ffffff 100%);
}

.form-shard {
  max-width: 800px;
  margin: 40px auto 0;
  background: #ffffff;
  border: 1px solid rgba(114, 182, 221, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.field {
  flex: 1 1 calc(50% - 10px);
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  flex: 1 1 100%;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--hue-text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(114, 182, 221, 0.4);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--hue-text);
  background: #ffffff;
  transition: var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--hue-primary-dark);
  box-shadow: 0 0 0 3px rgba(114, 182, 221, 0.2);
}

/* Footer Styles */
.pivot {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 30px;
  border-top: 1px solid #1e293b;
}

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

.brand-column {
  flex: 1 1 300px;
  min-width: 0;
}

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

.trace-column {
  flex: 1 1 160px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.column-index {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.foot-trace {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.foot-trace:hover {
  color: var(--hue-primary);
}

.copyright {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .vortex {
    height: auto;
    padding: 16px;
  }
  .axis {
    gap: 16px;
    margin: 12px 0;
    width: 100%;
    justify-content: center;
  }
  .prism {
    width: 100%;
    justify-content: center;
  }
  .index {
    font-size: 28px;
  }
  .layer {
    gap: 32px;
  }
  .shard,
  .deploy-shard {
    min-width: 100%;
  }
  .field {
    flex: 1 1 100%;
  }
  .matrix-table {
    display: block;
    overflow-x: auto;
  }
}

.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;
            }}