:root {
  --accent: #bee522;
  --accent-glow: rgba(190, 229, 34, 0.25);
  --accent-dark: #8dae10;
  --bg-dark: #0b0f14;
  --bg-surface: #131920;
  --bg-surface-elevated: #1a232d;
  --bg-overlay: #222d3a;
  --text-main: #e6edf3;
  --text-sub: #91a3b8;
  --text-muted: #5e7085;
  --border: #2a3746;
  --border-glow: #3c4f65;
}

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

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

/* 导航栏强制复用样式 */
.crown {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(11, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

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

.beacon-emblem img {
  height: 36px;
  width: auto;
  display: block;
}

.beacon-vector {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.vector-strand {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.35s ease;
  word-break: break-word;
}

.vector-strand:hover,
.vector-strand.active {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

/* 主版心与通布局容器 */
.domain {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 模块 1：Hero/Intro 文章样式 */
.sanctum {
  padding: 80px 0 60px;
  background: radial-gradient(circle at 70% 30%, rgba(190, 229, 34, 0.08) 0%, transparent 60%);
  position: relative;
}

.sanctum-shroud {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.bastion-left {
  flex: 1 1 500px;
  min-width: 0;
}

.bastion-right {
  flex: 1 1 450px;
  min-width: 0;
}

.ribbon-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(190, 229, 34, 0.1);
  border: 1px solid rgba(190, 229, 34, 0.3);
  border-radius: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cipher-primary {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  white-space: normal;
}

.whisper-lead {
  font-size: 18px;
  color: var(--text-sub);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cluster-triggers {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  min-width: 0;
}

.trigger-prime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: all 0.35s ease;
  min-width: 0;
}

.trigger-prime:hover {
  background-color: #d2f837;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(190, 229, 34, 0.4);
}

.trigger-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: var(--bg-surface-elevated);
  color: var(--text-main);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.35s ease;
  min-width: 0;
}

.trigger-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.enclave-overlap {
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-glow);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 4px 0 0 var(--accent);
}

.cluster-nodes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.node-anon {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
}

.glyph-casing {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(190, 229, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.glyph-casing svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
}

.vault-details {
  flex: 1;
  min-width: 0;
}

.cipher-sub {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.whisper-sub {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* 模块 2：零日志内存级面板证明 (Section) */
.citadel-proof {
  padding: 80px 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cipher-vault {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 16px;
}

.whisper-vault {
  font-size: 16px;
  color: var(--text-sub);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.cluster-packets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.packet-data {
  flex: 1 1 300px;
  min-width: 0;
  background-color: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.packet-data:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.ribbon-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

/* 模块 3：流量掩蔽网络 (Aside) */
.bastion-context {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface-elevated) 100%);
}

.vault-network {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.capsule-matrix {
  flex: 1 1 480px;
  min-width: 0;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-glow);
  border-radius: 10px;
  padding: 32px;
}

.cipher-matrix {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cipher-matrix::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.cluster-relays {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.relay-strand {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  font-family: monospace;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.relay-status {
  color: var(--accent);
  font-weight: 600;
}

/* 模块 4：指南部署步骤 (Div) */
.shroud-steps {
  padding: 80px 0;
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.cluster-sequence {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.node-step {
  flex: 1 1 300px;
  min-width: 0;
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 24px;
  position: relative;
}

.step-seal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--bg-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 16px;
}

/* 页脚底层构造 */
.root-bedrock {
  background-color: #070a0d;
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  color: var(--text-muted);
  font-size: 14px;
}

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

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

.anchor-brand p {
  margin-top: 12px;
  color: var(--text-sub);
  line-height: 1.6;
}

.harbor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  min-width: 0;
}

.harbor-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 120px;
}

.harbor-cipher {
  color: var(--text-main);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.harbor-strand {
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.35s ease;
}

.harbor-strand:hover {
  color: var(--accent);
}

.casing-copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 13px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .crown-shroud {
    flex-direction: column;
    gap: 16px;
  }
  .beacon-vector {
    gap: 12px;
    justify-content: center;
  }
  .cipher-primary {
    font-size: 28px;
  }
  .cipher-vault {
    font-size: 24px;
  }
  .bastion-left,
  .bastion-right,
  .packet-data,
  .node-step {
    flex: 1 1 100%;
  }
}

.beacon-crown {
    font-family: var(--font-stack);
    line-height: 1.65;
    word-break: break-word;
    color: var(--text-main);
}
.beacon-crown,
.beacon-crown *,
.beacon-crown *::before,
.beacon-crown *::after {
    box-sizing: border-box;
}

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

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

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

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

.beacon-crown a.beacon-vector-strand {
    --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;
}

.beacon-crown a.beacon-vector-strand,
.beacon-crown a.beacon-vector-strand:hover,
.beacon-crown a.beacon-vector-strand:focus,
.beacon-crown a.beacon-vector-strand:active,
.beacon-crown a.beacon-vector-strand.active,
.beacon-crown a.beacon-vector-strand[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);
}

.beacon-crown{
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(19, 25, 32, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #283646;
        }

.beacon-crown .beacon-crown-shroud{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            height: 76px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.beacon-crown .beacon-beacon-emblem{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.beacon-crown .beacon-beacon-emblem img{
            height: 40px;
            width: auto;
            display: block;
        }

.beacon-crown .beacon-beacon-vector{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }

.beacon-crown .beacon-vector-strand{
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: #91a3b8;
            border-radius: 6px;
            transition: all 0.35s ease;
        }

.beacon-crown .beacon-vector-strand:hover{
            color: #bee522;
            background-color: rgba(190, 229, 34, 0.08);
        }

.beacon-crown .beacon-vector-strand.active{
            color: #0b0f14;
            background-color: #bee522;
            font-weight: 600;
            box-shadow: 0 0 15px rgba(190, 229, 34, 0.25);
        }

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

.beacon-crown .beacon-beacon-vector{
                justify-content: center;
                width: 100%;
            }

.beacon-crown .beacon-vector-strand{
                padding: 6px 12px;
                font-size: 13px;
            }}

.beacon-crown {
    background: rgb(19, 25, 32);
    background-image: none;
}

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

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

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

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

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

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

.bedrock-bedrock .bedrock-whisper-body{
            font-size: 15px;
            color: #91a3b8;
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }

.bedrock-bedrock{
            background-color: #070a0e;
            border-top: 1px solid #283646;
            padding: 60px 0 40px;
            font-size: 14px;
            color: #5e7085;
        }

.bedrock-bedrock .bedrock-bedrock-shroud{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }

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

.bedrock-bedrock .bedrock-bedrock-brand{
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            display: block;
        }

.bedrock-bedrock .bedrock-bedrock-cipher{
            font-size: 15px;
            font-weight: 600;
            color: #e6edf3;
            margin-bottom: 16px;
        }

.bedrock-bedrock .bedrock-bedrock-roster{
            list-style: none;
        }

.bedrock-bedrock .bedrock-bedrock-node{
            margin-bottom: 10px;
        }

.bedrock-bedrock .bedrock-bedrock-strand{
            color: #91a3b8;
            transition: color 0.35s ease;
        }

.bedrock-bedrock .bedrock-bedrock-strand:hover{
            color: #bee522;
        }

.bedrock-bedrock .bedrock-bedrock-root{
            max-width: 1280px;
            margin: 40px auto 0;
            padding: 24px 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }