:root {
      --primary: #ea525c;
      --primary-hover: #d63b46;
      --primary-glow: rgba(234, 82, 92, 0.25);
      --bg-dark: #0b0f19;
      --bg-card: #151c2c;
      --bg-card-hover: #1c263c;
      --bg-light: #1e293b;
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --border: rgba(234, 82, 92, 0.25);
    }

    * {
      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(--bg-dark);
      color: var(--text-main);
      line-height: 1.7;
      word-break: break-word;
      overflow-wrap: break-word;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.35s ease;
    }

    /* 顶部导航栏 - 复用首页规范 */
    .kernel {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 15, 25, 0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      width: 100%;
    }

    .shell {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .conduit {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }

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

    .emblem img {
      height: 38px;
      width: auto;
      display: block;
    }

    .orbit {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 28px;
    }

    .conduit-trace {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted);
      padding: 8px 12px;
      border-radius: 6px;
      transition: all 0.35s ease;
    }

    .conduit-trace:hover,
    .conduit-trace.active {
      color: #ffffff;
      background: rgba(234, 82, 92, 0.15);
    }

    /* 首屏 Prism 区块 */
    .prism {
      width: 100%;
      padding: 80px 0 100px;
      background: radial-gradient(circle at 80% 20%, rgba(234, 82, 92, 0.15) 0%, transparent 50%),
                  radial-gradient(circle at 20% 80%, rgba(30, 41, 59, 0.5) 0%, transparent 50%);
    }

    .prism-shell {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
    }

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

    .shard-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(234, 82, 92, 0.12);
      border: 1px solid var(--border);
      border-radius: 20px;
      color: var(--primary);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .crest-prism {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.25;
      color: #ffffff;
      margin-bottom: 20px;
      white-space: normal;
    }

    .rune-prism {
      font-size: 1.1rem;
      color: var(--text-muted);
      margin-bottom: 36px;
      max-width: 600px;
    }

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

    .warp-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--primary);
      color: #ffffff;
      padding: 14px 28px;
      border-radius: 10px;
      font-weight: 600;
      box-shadow: 0 6px 20px var(--primary-glow);
      border: 1px solid transparent;
      cursor: pointer;
    }

    .warp-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
    }

    .warp-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: rgba(30, 41, 59, 0.7);
      color: var(--text-main);
      padding: 14px 28px;
      border-radius: 10px;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .warp-secondary:hover {
      background: rgba(51, 65, 85, 0.8);
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
    }

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

    /* 浮动卡片预览原型 - HERO:card_float */
    .capsule-float {
      background: rgba(21, 28, 44, 0.88);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
      position: relative;
    }

    .float-kernel {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 16px;
      margin-bottom: 24px;
    }

    .float-crest {
      font-size: 1.1rem;
      font-weight: 700;
      color: #ffffff;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .float-locus {
      background: rgba(16, 185, 129, 0.15);
      color: #10b981;
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: 12px;
      font-weight: 600;
    }

    .float-body {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .packet-mini {
      background: rgba(11, 15, 25, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 12px;
      padding: 14px 18px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      transition: all 0.35s ease;
    }

    .packet-mini:hover {
      border-color: var(--primary);
      background: rgba(234, 82, 92, 0.05);
    }

    .packet-info {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .glyph-box {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(234, 82, 92, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
    }

    .packet-rune {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-main);
    }

    .packet-sub {
      font-size: 0.75rem;
      color: var(--text-dim);
    }

    .packet-probe {
      font-size: 0.8rem;
      color: var(--primary);
      font-weight: 600;
    }

    /* 主题焦点 Section - Nexus */
    .nexus {
      padding: 90px 0;
      background: #0b0f19;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .tunnel-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 60px;
    }

    .crest-tunnel {
      font-size: 2rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .rune-tunnel {
      font-size: 1.05rem;
      color: var(--text-muted);
    }

    .cluster-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }

    .capsule-capsule {
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      padding: 32px;
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .capsule-capsule:hover {
      background: var(--bg-card-hover);
      border-color: var(--border);
      transform: translateY(-4px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    }

    .glyph-large {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(234, 82, 92, 0.2), rgba(234, 82, 92, 0.05));
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 24px;
    }

    .crest-capsule {
      font-size: 1.25rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
    }

    .rune-capsule {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .strand-code {
      background: rgba(11, 15, 25, 0.8);
      border: 1px dashed rgba(234, 82, 92, 0.3);
      padding: 10px 14px;
      border-radius: 8px;
      font-family: monospace;
      font-size: 0.85rem;
      color: #ea525c;
    }

    /* 核心路径 Section - Zenith */
    .zenith {
      padding: 90px 0;
      background: rgba(15, 23, 42, 0.5);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .timeline-matrix {
      display: flex;
      flex-direction: column;
      gap: 32px;
      max-width: 900px;
      margin: 0 auto;
    }

    .timeline-shard {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      padding: 32px;
      align-items: flex-start;
      position: relative;
    }

    .step-locus {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--primary);
      color: #ffffff;
      font-weight: 800;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 14px var(--primary-glow);
    }

    .timeline-body {
      flex: 1 1 300px;
      min-width: 0;
    }

    .crest-step {
      font-size: 1.2rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
    }

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

    /* 使用场景 Section - Matrix */
    .matrix {
      padding: 90px 0 110px;
      background: #0b0f19;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lattice-box {
      background: linear-gradient(135deg, rgba(21, 28, 44, 0.9), rgba(30, 41, 59, 0.8));
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 48px;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
    }

    .lattice-shell {
      flex: 1 1 450px;
      min-width: 0;
    }

    .crest-lattice {
      font-size: 1.75rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .rune-lattice {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .strand-stream {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 32px;
    }

    .strand-strand {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--text-main);
    }

    .glyph-check {
      color: #10b981;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* 页脚区域 Patch */
    .patch {
      background: #070a12;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 60px 0 40px;
      color: var(--text-dim);
      font-size: 0.9rem;
    }

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

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

    .brand-name {
      font-size: 1.35rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 12px;
    }

    .brand-desc {
      color: var(--text-dim);
      font-size: 0.9rem;
      max-width: 360px;
    }

    .echo-links {
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
    }

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

    .column-crest {
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 4px;
    }

    .anchor-trace {
      color: var(--text-dim);
    }

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

    .copyright-band {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-dim);
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
      .crest-prism {
        font-size: 1.85rem;
      }
      .orbit {
        gap: 12px;
      }
      .capsule-float {
        padding: 24px;
      }
      .lattice-box {
        padding: 28px;
      }
      .timeline-shard {
        padding: 20px;
      }
    }

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

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

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

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

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

.conduit-kernel a.conduit-conduit-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;
}

.conduit-kernel a.conduit-conduit-trace,
.conduit-kernel a.conduit-conduit-trace:hover,
.conduit-kernel a.conduit-conduit-trace:focus,
.conduit-kernel a.conduit-conduit-trace:active,
.conduit-kernel a.conduit-conduit-trace.active,
.conduit-kernel a.conduit-conduit-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);
}

.conduit-kernel .conduit-shell{
            width: 100%;
            max-width: 1280px;
            padding: 0 24px;
            margin: 0 auto;
            min-width: 0;
        }

.conduit-kernel{
            width: 100%;
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(11, 15, 25, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.conduit-kernel .conduit-conduit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 76px;
            min-width: 0;
        }

.conduit-kernel .conduit-emblem, .conduit-kernel .conduit-emblem{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: #f8fafc;
            font-weight: 700;
            font-size: 1.25rem;
            min-width: 0;
        }

.conduit-kernel .conduit-emblem img, .conduit-kernel .conduit-emblem img{
            height: 38px;
            width: auto;
            display: block;
        }

.conduit-kernel .conduit-orbit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

.conduit-kernel .conduit-conduit-trace{
            color: #94a3b8;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.35s ease;
            white-space: normal;
        }

.conduit-kernel .conduit-conduit-trace:hover{
            color: #f8fafc;
            background: rgba(255, 255, 255, 0.05);
        }

.conduit-kernel .conduit-conduit-trace.active{
            color: #ffffff;
            background: #ea525c;
            box-shadow: 0 4px 14px rgba(234, 82, 92, 0.25);
        }

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

.conduit-kernel {
    background: rgb(11, 15, 25);
    background-image: none;
}

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

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

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

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

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

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

.anchor-patch .anchor-shell{
            width: 100%;
            max-width: 1280px;
            padding: 0 24px;
            margin: 0 auto;
            min-width: 0;
        }

.anchor-patch{
            width: 100%;
            background: #070a11;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 60px 0 30px;
        }

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

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

.anchor-patch .anchor-crest-brand-patch{
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

.anchor-patch .anchor-rune-brand-patch{
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.6;
        }

.anchor-patch .anchor-stream-patch{
            flex: 1 1 200px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.anchor-patch .anchor-crest-patch-head{
            color: #ffffff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

.anchor-patch .anchor-trace-patch{
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.35s ease;
        }

.anchor-patch .anchor-trace-patch:hover{
            color: #ea525c;
        }

.anchor-patch .anchor-band-copyright{
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            text-align: center;
            color: #64748b;
            font-size: 0.85rem;
        }