:root {
  --primary: #5a5af6;
  --primary-hover: #4545e6;
  --primary-glow: rgba(90, 90, 246, 0.25);
  --bg-light: #f6f8fc;
  --surface-white: #ffffff;
  --surface-card: #f0f3fa;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-sub: #64748b;
  --radius: 20px;
  --border: #e2e8f0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

.sphere {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* 强制复用首页导航栏 */
.vultr {
  background: var(--surface-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.vultr-trace {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.sigil {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sigil img {
  height: 32px;
  width: auto;
}

.sigil-talis {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.vultr [role="navigation"] {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.vultr-glyph {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.35s ease;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
}

.vultr-glyph:hover,
.vultr-glyph.active {
  color: var(--primary);
  font-weight: 600;
}

/* 顶部技术总览区 */
.primus {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
  padding: 4rem 2rem 3rem 2rem;
  border-bottom: 1px solid var(--border);
}

.primus-haven {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.coda-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(90, 90, 246, 0.1);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(90, 90, 246, 0.2);
}

.primus-talis {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0b0f19;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 1.2rem;
  white-space: normal;
}

.primus-vesta {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 780px;
  margin-bottom: 2rem;
}

/* 技术数据状态面板 */
.glint-nexus {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  width: 100%;
  max-width: 1000px;
  justify-content: center;
  margin-top: 1rem;
}

.glint-echo {
  flex: 1;
  min-width: 220px;
  background: var(--surface-white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.glint-echo:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(90, 90, 246, 0.12);
}

.glint-talis {
  font-size: 0.85rem;
  color: var(--text-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.glint-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  font-family: monospace;
}

/* 主内容容器 */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* 区块统一样式变体 */
.aura-haven {
  background: var(--surface-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3.5rem 2.5rem;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06);
}

.cipher-haven {
  background: linear-gradient(135deg, #ffffff 0%, #f4f6ff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3.5rem 2.5rem;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06);
}

.vaulty-enclave {
  background: var(--surface-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3.5rem 2.5rem;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06);
}

.haven-trace {
  margin-bottom: 2.5rem;
}

.haven-talis {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.haven-vesta {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 820px;
}

/* 网格与卡片变体 */
.vaulty-nexus {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.vaulty-echo {
  flex: 1;
  min-width: 280px;
  background: var(--surface-card);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.vaulty-echo:hover {
  background: var(--surface-white);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(90, 90, 246, 0.1);
}

.notus-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(90, 90, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.notus-wrap svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cipher-talis {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.cipher-vesta {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 交互算法架构展示窗 (Data UI Visualization) */
.dacty-stage {
  margin-top: 2rem;
  background: #0f172a;
  border-radius: 16px;
  padding: 1.8rem;
  color: #f8fafc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9rem;
  overflow-x: auto;
  border: 1px solid #1e293b;
}

.dacty-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #334155;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  color: #94a3b8;
  font-size: 0.8rem;
}

.dacty-dots {
  display: flex;
  gap: 0.4rem;
}

.dacty-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dacty-dot.red { background: #ef4444; }
.dacty-dot.yellow { background: #f59e0b; }
.dacty-dot.green { background: #10b981; }

.dacty-line {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
}

.dacty-num {
  color: #475569;
  user-select: none;
}

.dacty-code {
  color: #e2e8f0;
}

.dacty-code .kwd { color: #818cf8; }
.dacty-code .str { color: #34d399; }
.dacty-code .cmt { color: #64748b; font-style: italic; }

/* 审计列表块 */
.basil-matrix {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.basil-echo {
  flex: 1;
  min-width: 300px;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  padding: 1.5rem;
  background: var(--surface-white);
  transition: border-color 0.35s ease;
}

.basil-echo:hover {
  border-color: var(--primary);
}

.basil-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.basil-pylon {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: #dcfce7;
  color: #166534;
}

/* 页脚样式复用 */
.stasis {
  background: var(--surface-white);
  border-top: 1px solid var(--border);
  margin-top: auto;
  padding: 3.5rem 2rem 2rem 2rem;
}

.stasis-haven {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
}

.orbit-brand {
  flex: 1;
  min-width: 240px;
}

.orbit-talis {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.orbit-vesta {
  font-size: 0.9rem;
  color: var(--text-sub);
  max-width: 320px;
}

.orbit-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.orbit-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.orbit-h {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.orbit-glyph {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.35s ease;
}

.orbit-glyph:hover {
  color: var(--primary);
}

.orbit-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-sub);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .vultr-trace {
    flex-direction: column;
    gap: 1rem;
  }
  
  .vultr [role="navigation"] {
    justify-content: center;
    gap: 0.8rem;
  }
  
  .primus {
    padding: 2.5rem 1.2rem 2rem 1.2rem;
  }
  
  main {
    padding: 2rem 1.2rem;
    gap: 2.5rem;
  }

  .aura-haven,
  .cipher-haven,
  .vaulty-enclave {
    padding: 2rem 1.2rem;
  }

  .vaulty-echo,
  .basil-echo {
    min-width: 100%;
  }
}

.vultr-vultr {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.vultr-vultr,
.vultr-vultr *,
.vultr-vultr *::before,
.vultr-vultr *::after {
    box-sizing: border-box;
}

.vultr-vultr [role="navigation"],
.vultr-vultr div,
.vultr-vultr section,
.vultr-vultr article,
.vultr-vultr aside,
.vultr-vultr p,
.vultr-vultr h1,
.vultr-vultr h2,
.vultr-vultr h3,
.vultr-vultr h4,
.vultr-vultr h5,
.vultr-vultr h6,
.vultr-vultr a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.vultr-vultr a.vultr-vultr-glyph {
    --aisite-shell-nav-padding: 0.55rem 1.1rem;
    --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;
}

.vultr-vultr a.vultr-vultr-glyph,
.vultr-vultr a.vultr-vultr-glyph:hover,
.vultr-vultr a.vultr-vultr-glyph:focus,
.vultr-vultr a.vultr-vultr-glyph:active,
.vultr-vultr a.vultr-vultr-glyph.active,
.vultr-vultr a.vultr-vultr-glyph[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);
}

.vultr-vultr{
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid #e2e8f0;
        }

.vultr-vultr .vultr-vultr-trace{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.9rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.vultr-vultr .vultr-sigil{
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

.vultr-vultr .vultr-sigil img{
            height: 38px;
            width: auto;
            display: block;
        }

.vultr-vultr .vultr-sigil-talis{
            font-size: 1.25rem;
            font-weight: 700;
            color: #0b0f19;
            letter-spacing: -0.02em;
        }

.vultr-vultr .vultr-vultr-glyph{
            text-decoration: none;
            color: #475569;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.55rem 1.1rem;
            border-radius: 12px;
            transition: all 0.35s ease;
            min-width: 0;
        }

.vultr-vultr .vultr-vultr-glyph:hover{
            color: #5a5af6;
            background-color: rgba(90, 90, 246, 0.06);
        }

.vultr-vultr .vultr-vultr-glyph.active{
            color: #5a5af6;
            background-color: rgba(90, 90, 246, 0.12);
            font-weight: 600;
        }

@media (max-width: 768px){.vultr-vultr .vultr-vultr-trace{
                flex-direction: column;
                gap: 1rem;
            }}

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

.stasis-stasis {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.stasis-stasis,
.stasis-stasis *,
.stasis-stasis *::before,
.stasis-stasis *::after {
    box-sizing: border-box;
}

.stasis-stasis [role="navigation"],
.stasis-stasis div,
.stasis-stasis section,
.stasis-stasis article,
.stasis-stasis aside,
.stasis-stasis p,
.stasis-stasis h1,
.stasis-stasis h2,
.stasis-stasis h3,
.stasis-stasis h4,
.stasis-stasis h5,
.stasis-stasis h6,
.stasis-stasis a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.stasis-stasis .stasis-vesta-desc{
            font-size: 0.925rem;
            color: #64748b;
            line-height: 1.5;
        }

.stasis-stasis{
            background-color: #0b0f19;
            color: #94a3b8;
            border-top: 1px solid #1e293b;
            padding: 4rem 1.5rem 2.5rem 1.5rem;
        }

.stasis-stasis .stasis-stasis-orbit{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            justify-content: space-between;
            margin-bottom: 3rem;
        }

.stasis-stasis .stasis-orbit-brand{
            flex: 1 1 320px;
            min-width: 0;
        }

.stasis-stasis .stasis-brand-name{
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.8rem;
        }

.stasis-stasis .stasis-orbit-vultr{
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
        }

.stasis-stasis .stasis-crypt-col{
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            min-width: 140px;
        }

.stasis-stasis .stasis-talis-col{
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

.stasis-stasis .stasis-glyph-orbit{
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.35s ease;
        }

.stasis-stasis .stasis-glyph-orbit:hover{
            color: #ffffff;
        }

.stasis-stasis .stasis-coda-bottom{
            max-width: 1280px;
            margin: 0 auto;
            border-top: 1px solid #1e293b;
            padding-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.875rem;
        }