:root {
  --theme-primary: #e36583;
  --theme-accent: #f28da3;
  --theme-surface: #1a2035;
  --theme-bg: #121624;
  --theme-text: #f0f4f8;
  --theme-subtext: #9aa8c3;
  --radius-main: 16px;
  --radius-pill: 9999px;
  --border-glow: rgba(227, 101, 131, 0.25);
  --shadow-main: 0 12px 30px rgba(0, 0, 0, 0.35);
}

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

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

/* 导航栏复用 */
.beacon-sheath {
  width: 100%;
  background: rgba(18, 22, 36, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-glow);
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

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

.beacon-crest img {
  height: 38px;
  width: auto;
  display: block;
}

.nexus-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  min-width: 0;
}

.latch-strand {
  color: var(--theme-subtext);
  text-decoration: none;
  font-weight: 5rem;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  word-break: break-word;
}

.latch-strand:hover {
  color: #ffffff;
  background: rgba(227, 101, 131, 0.15);
}

.latch-strand.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--theme-primary) 0%, #d84b6c 100%);
  box-shadow: 0 4px 12px rgba(227, 101, 131, 0.3);
}

/* 主内容布局 */
main {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* 顶层语义块 1: Intro Section (vault_architecture_hero) */
.canopy-vanguard {
  background: radial-gradient(circle at 80% 20%, rgba(227, 101, 131, 0.15) 0%, rgba(26, 32, 53, 0.8) 70%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-main);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-main);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.canopy-vanguard > div {
  flex: 1;
  min-width: 300px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.canopy-edict {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
  word-break: break-word;
}

.canopy-script {
  color: var(--theme-subtext);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 620px;
  word-break: break-word;
}

.visor-cohort {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.haven-capsule {
  background: var(--theme-surface);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  flex: 1;
  min-width: 220px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.haven-capsule:hover {
  transform: translateY(-4px);
  border-color: var(--theme-primary);
}

.rune-node {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(227, 101, 131, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary);
}

.rune-node svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.haven-capsule h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
  word-break: break-word;
}

.haven-capsule p {
  font-size: 0.88rem;
  color: var(--theme-subtext);
  line-height: 1.5;
  word-break: break-word;
}

/* 芯片电路可视化示意 */
.aegis-vault-visual {
  background: rgba(18, 22, 36, 0.6);
  border: 1px solid rgba(227, 101, 131, 0.3);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chip-box {
  width: 220px;
  height: 220px;
  border: 2px dashed var(--theme-primary);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(227, 101, 131, 0.2) 0%, rgba(26, 32, 53, 0.9) 80%);
  box-shadow: 0 0 25px rgba(227, 101, 131, 0.2);
  gap: 0.8rem;
  text-align: center;
}

.chip-box span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--theme-accent);
}

/* 顶层语义块 2: Article (asset_category_structure) */
.domain-fortress {
  background: var(--theme-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-main);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-main);
  word-break: break-word;
}

.aegis-edict {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
  word-break: break-word;
}

.aegis-script {
  color: var(--theme-subtext);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  word-break: break-word;
}

.vault-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.haven-nook {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 260px;
  background: rgba(18, 22, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.8rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.haven-nook:hover {
  border-color: var(--theme-primary);
  background: rgba(26, 32, 53, 0.9);
  transform: translateY(-4px);
}

.haven-nook h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin: 1rem 0 0.6rem 0;
  word-break: break-word;
}

.haven-nook p {
  color: var(--theme-subtext);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  word-break: break-word;
}

.ribbon-sheath {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.pill-strand {
  background: rgba(227, 101, 131, 0.12);
  color: var(--theme-accent);
  border: 1px solid rgba(227, 101, 131, 0.2);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  word-break: break-word;
}

/* 顶层语义块 3: Aside (isolation_mechanism) */
.aegis-vault {
  background: linear-gradient(180deg, #161b2e 0%, #121624 100%);
  border: 1px solid rgba(227, 101, 131, 0.3);
  border-radius: var(--radius-main);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-main);
  word-break: break-word;
}

.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.step-capsule {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: 250px;
  position: relative;
  background: var(--theme-surface);
  border-radius: 14px;
  padding: 1.8rem;
  border-left: 4px solid var(--theme-primary);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.step-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--theme-primary);
  letter-spacing: 1px;
}

.step-capsule h3 {
  font-size: 1.1rem;
  color: #ffffff;
  word-break: break-word;
}

.step-capsule p {
  color: var(--theme-subtext);
  font-size: 0.9rem;
  line-height: 1.6;
  word-break: break-word;
}

/* 顶层语义块 4: Section (compliance_audit) */
.audit-cohort {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

.audit-capsule {
  flex: 1;
  min-width: 280px;
  background: rgba(18, 22, 36, 0.8);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audit-capsule h3 {
  font-size: 1.15rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  word-break: break-word;
}

.audit-capsule p {
  color: var(--theme-subtext);
  font-size: 0.93rem;
  line-height: 1.65;
  word-break: break-word;
}

.pulse-clinch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--theme-primary) 0%, #d84b6c 100%);
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(227, 101, 131, 0.4);
  transition: all 0.25s ease;
  word-break: break-word;
  margin-top: 1rem;
  align-self: flex-start;
}

.pulse-clinch:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(227, 101, 131, 0.6);
  color: #ffffff;
}

/* 页脚 */
.bedrock-anchor {
  background: #0d101d;
  border-top: 1px solid var(--border-glow);
  padding: 3.5rem 2.0rem 2rem 2rem;
}

.bedrock-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
}

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

.bedrock-brand h2 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.bedrock-brand p {
  color: var(--theme-subtext);
  font-size: 0.9rem;
  max-width: 360px;
  word-break: break-word;
}

.bedrock-beacon {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  min-width: 0;
}

.bedrock-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 120px;
}

.bedrock-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.bedrock-col a {
  color: var(--theme-subtext);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease;
  word-break: break-word;
}

.bedrock-col a:hover {
  color: var(--theme-accent);
}

.bedrock-stratum {
  max-width: 1240px;
  margin: 2.5rem auto 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--theme-subtext);
  font-size: 0.85rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .beacon-sheath {
    padding: 0.8rem 1rem;
  }
  .nexus-cluster {
    gap: 0.6rem;
  }
  .latch-strand {
    padding: 0.3rem 0.5rem;
    font-size: 0.85rem;
  }
  main {
    padding: 1.5rem 1rem 3rem 1rem;
    gap: 2.5rem;
  }
  .canopy-vanguard, 
  .domain-fortress, 
  .aegis-vault {
    padding: 2rem 1.2rem;
  }
  .haven-nook, 
  .step-capsule {
    flex: 1 1 100%;
  }
}

.beacon-beacon-sheath {
    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(--theme-text);
}
.beacon-beacon-sheath,
.beacon-beacon-sheath *,
.beacon-beacon-sheath *::before,
.beacon-beacon-sheath *::after {
    box-sizing: border-box;
}

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

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

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

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

.beacon-beacon-sheath a.beacon-latch-strand {
    --aisite-shell-nav-padding: 0.5rem 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;
}

.beacon-beacon-sheath a.beacon-latch-strand,
.beacon-beacon-sheath a.beacon-latch-strand:hover,
.beacon-beacon-sheath a.beacon-latch-strand:focus,
.beacon-beacon-sheath a.beacon-latch-strand:active,
.beacon-beacon-sheath a.beacon-latch-strand.active,
.beacon-beacon-sheath a.beacon-latch-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-beacon-sheath{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(18, 22, 36, 0.92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(227, 101, 131, 0.25);
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

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

.beacon-beacon-sheath .beacon-beacon-crest img{
            height: 38px;
            width: auto;
            display: block;
        }

.beacon-beacon-sheath .beacon-nexus-cluster{
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
            min-width: 0;
        }

.beacon-beacon-sheath .beacon-latch-strand{
            color: #9aa8c3;
            text-decoration: none;
            padding: 0.5rem 1.1rem;
            border-radius: 99px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: normal;
        }

.beacon-beacon-sheath .beacon-latch-strand:hover, .beacon-beacon-sheath .beacon-latch-strand.active{
            color: #ffffff;
            background: rgba(227, 101, 131, 0.18);
            box-shadow: 0 0 12px rgba(227, 101, 131, 0.35);
            border: 1px solid #e36583;
        }

@media (max-width: 768px){.beacon-beacon-sheath{
                padding: 0.8rem 1rem;
                flex-direction: column;
                align-items: stretch;
                gap: 0.8rem;
            }

.beacon-beacon-sheath .beacon-nexus-cluster{
                justify-content: center;
            }

.beacon-beacon-sheath .beacon-latch-strand{
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }}

.beacon-beacon-sheath {
    background: rgb(18, 22, 36);
    background-image: none;
}

.bedrock-bedrock-stratum {
    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(--theme-text);
}
.bedrock-bedrock-stratum,
.bedrock-bedrock-stratum *,
.bedrock-bedrock-stratum *::before,
.bedrock-bedrock-stratum *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.bedrock-bedrock-stratum .bedrock-stratum-edict{
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

.bedrock-bedrock-stratum{
            background: #0b0e17;
            border-top: 1px solid rgba(227, 101, 131, 0.25);
            padding: 3rem 2rem 2rem;
            color: #9aa8c3;
            font-size: 0.9rem;
        }

.bedrock-bedrock-stratum .bedrock-bedrock-sheath{
            max-width: 1360px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

.bedrock-bedrock-stratum .bedrock-anchor-base{
            flex: 1 1 300px;
            min-width: 0;
        }

.bedrock-bedrock-stratum .bedrock-anchor-edict{
            font-size: 1.4rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

.bedrock-bedrock-stratum .bedrock-anchor-script{
            line-height: 1.6;
            margin-bottom: 1rem;
        }

.bedrock-bedrock-stratum .bedrock-stratum-cluster{
            flex: 1 1 180px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

.bedrock-bedrock-stratum .bedrock-stratum-edict{
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

.bedrock-bedrock-stratum .bedrock-stratum-strand{
            color: #9aa8c3;
            text-decoration: none;
            transition: color 0.2s ease;
        }

.bedrock-bedrock-stratum .bedrock-stratum-strand:hover{
            color: #f28da3;
        }

.bedrock-bedrock-stratum .bedrock-base-copyright{
            max-width: 1360px;
            margin: 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 0.85rem;
        }