:root {
            --primary: #24cef0;
            --primary-glow: rgba(36, 206, 240, 0.25);
            --bg-deep: #070b15;
            --bg-surface: #0e1626;
            --bg-capsule: #162238;
            --text-main: #f3f5f9;
            --text-muted: #8fa0c0;
            --border-color: #1e2d4a;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

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

        body {
            background-color: var(--bg-deep);
            color: var(--text-main);
            font-family: var(--font-sans);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 顶部导航栏样式（复用首页风格） */
        .crown {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(7, 11, 21, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
        }

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

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

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

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

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

        .crest {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 4px;
            transition: all 0.35s ease;
        }

        .crest:hover,
        .crest.active,
        .crest.active {
            color: var(--primary);
            background-color: rgba(36, 206, 240, 0.1);
        }

        /* 主内容容器 */
        .abyss {
            position: relative;
        }

        /* Section 1: Hero / Acquire Area */
        .dome {
            padding: 80px 0;
            position: relative;
            background: radial-gradient(circle at 80% 20%, rgba(36, 206, 240, 0.08) 0%, transparent 50%);
        }

        .jolt {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

        .jolt > * {
            flex: 1;
            min-width: 320px;
        }

        .capsule {
            display: inline-flex;
            align-items: center;
            background-color: var(--bg-capsule);
            border: 1px solid var(--border-color);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 24px;
            letter-spacing: 0.5px;
        }

        .glyph {
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.25;
            white-space: normal;
        }

        .dome .glyph {
            font-size: clamp(32px, 5vw, 48px);
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 60%, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .shard {
            background: linear-gradient(135deg, rgba(14, 22, 38, 0.9), rgba(22, 34, 56, 0.9));
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 28px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            margin-bottom: 24px;
        }

        .shard .glyph {
            font-size: 18px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .trigger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: var(--bg-deep);
            font-weight: 600;
            font-size: 16px;
            padding: 16px 32px;
            border-radius: 6px;
            text-decoration: none;
            box-shadow: 0 4px 20px var(--primary-glow);
            border: 1px solid var(--primary);
            transition: all 0.35s ease;
            width: 100%;
            text-align: center;
            margin-bottom: 16px;
        }

        .trigger:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(36, 206, 240, 0.5);
            background-color: #3fe0ff;
        }

        .mirage {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .mirage span {
            background-color: rgba(22, 34, 56, 0.5);
            padding: 4px 10px;
            border-radius: 4px;
            border: 1px solid rgba(30, 45, 74, 0.5);
        }

        .mirage code {
            font-family: monospace;
            color: var(--primary);
        }

        .halo {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .halo img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .halo:hover img {
            transform: scale(1.02);
        }

        /* Section 2: Platform Comparison Matrix */
        .matrix {
            padding: 80px 0;
            background-color: rgba(14, 22, 38, 0.4);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .matrix .glyph-center {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 56px;
        }

        .matrix .glyph-center h2 {
            font-size: clamp(28px, 4vw, 36px);
            margin-bottom: 16px;
        }

        .mirage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 56px;
        }

        .node {
            background: linear-gradient(135deg, rgba(14, 22, 38, 0.7), rgba(22, 34, 56, 0.7));
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 32px 24px;
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .node:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 12px var(--primary-glow);
        }

        .tether {
            width: 48px;
            height: 48px;
            background-color: rgba(36, 206, 240, 0.1);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .tether svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .node h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .node p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .spark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.35s ease;
            text-align: center;
        }

        .spark:hover {
            background-color: var(--primary);
            color: var(--bg-deep);
            box-shadow: 0 4px 12px var(--primary-glow);
        }

        /* Detailed Comparison Subsection */
        .jolt-split {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 56px;
            align-items: center;
        }

        .jolt-split > * {
            flex: 1;
            min-width: 320px;
        }

        .twig-dl {
            background-color: rgba(14, 22, 38, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 32px;
        }

        .twig-dl dt {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .twig-dl dt::before {
            content: "";
            display: inline-block;
            width: 6px;
            height: 6px;
            background-color: var(--primary);
            border-radius: 50%;
        }

        .twig-dl dd {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .twig-dl dd:last-child {
            margin-bottom: 0;
        }

        /* Section 3: Steps Area */
        .cocoon-steps {
            padding: 80px 24px;
        }

        .cocoon-steps h2 {
            font-size: clamp(28px, 4vw, 36px);
            text-align: center;
            margin-bottom: 16px;
        }

        .cocoon-steps .weave-sub {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 56px;
        }

        .twig-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            list-style: none;
            padding: 0;
        }

        .sheath-step {
            flex: 1;
            min-width: 260px;
            background: linear-gradient(135deg, rgba(14, 22, 38, 0.6), rgba(22, 34, 56, 0.6));
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 40px 28px;
            position: relative;
            transition: border-color 0.35s ease;
        }

        .sheath-step:hover {
            border-color: var(--primary);
        }

        .sheath-step .capsule-num {
            position: absolute;
            top: -16px;
            left: 28px;
            background-color: var(--primary);
            color: var(--bg-deep);
            font-size: 14px;
            font-weight: 800;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 12px var(--primary-glow);
        }

        .sheath-step h3 {
            font-size: 18px;
            font-weight: 700;
            margin-top: 8px;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .sheath-step p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Section 4: FAQ Area */
        .vault {
            padding: 80px 24px;
            background-color: rgba(14, 22, 38, 0.4);
            border-top: 1px solid var(--border-color);
        }

        .vault-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .vault h2 {
            font-size: clamp(28px, 4vw, 36px);
            text-align: center;
            margin-bottom: 16px;
        }

        .vault .weave-sub {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 56px;
        }

        .strand-faq {
            border: 1px solid var(--border-color);
            background-color: rgba(14, 22, 38, 0.8);
            border-radius: 6px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.35s ease;
        }

        .strand-faq[open] {
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .sheath-faq-summary {
            padding: 20px 24px;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-main);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .sheath-faq-summary::-webkit-details-marker {
            display: none;
        }

        .sheath-faq-summary::after {
            content: "+";
            font-size: 20px;
            color: var(--primary);
            transition: transform 0.35s ease;
        }

        .strand-faq[open] .sheath-faq-summary::after {
            transform: rotate(45deg);
        }

        .vault .weave {
            padding: 0 24px 20px 24px;
            margin-bottom: 0;
            font-size: 14px;
            color: var(--text-muted);
            border-top: 1px solid rgba(30, 45, 74, 0.5);
            padding-top: 16px;
        }

        /* Footer Style */
        .sole {
            background-color: var(--bg-deep);
            border-top: 1px solid var(--border-color);
            padding: 64px 0 32px 0;
        }

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

        .bedrock > * {
            flex: 1;
            min-width: 240px;
        }

        .bedrock .glyph {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 20px;
            display: block;
        }

        .bedrock .weave {
            font-size: 14px;
            max-width: 320px;
            margin-bottom: 0;
        }

        .bedrock-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .bedrock-links > * {
            flex: 1;
            min-width: 120px;
        }

        .anchor {
            display: block;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 12px;
            transition: color 0.35s ease;
        }

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

        .strand-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 32px;
            text-align: center;
        }

        .strand-bottom .weave {
            font-size: 13px;
            margin-bottom: 0;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .jolt {
                gap: 32px;
            }
            .jolt-split {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .helm {
                height: auto;
                padding: 16px 24px;
                flex-direction: column;
                gap: 16px;
            }
            .conduit {
                width: 100%;
                justify-content: center;
            }
            .jolt {
                flex-direction: column;
            }
            .dome {
                padding: 48px 0;
            }
            .matrix, .cocoon-steps, .vault {
                padding: 56px 0;
            }
            .bedrock {
                flex-direction: column;
                gap: 32px;
            }
        }

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

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

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

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

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

.portal-crown a.portal-crest.portal-active,
.portal-crown a.portal-crest {
    --aisite-shell-nav-padding: 8px 0;
    --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;
}

.portal-crown a.portal-crest.portal-active,
.portal-crown a.portal-crest.portal-active:hover,
.portal-crown a.portal-crest.portal-active:focus,
.portal-crown a.portal-crest.portal-active:active,
.portal-crown a.portal-crest.portal-active.active,
.portal-crown a.portal-crest.portal-active[aria-current="page"],
.portal-crown a.portal-crest,
.portal-crown a.portal-crest:hover,
.portal-crown a.portal-crest:focus,
.portal-crown a.portal-crest:active,
.portal-crown a.portal-crest.active,
.portal-crown a.portal-crest[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);
}

.portal-crown .portal-cocoon{
      width: 100%;
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 24px;
    }

.portal-crown{
      background-color: rgba(7, 11, 21, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid #1e2d4a;
      position: sticky;
      top: 0;
      z-index: 100;
    }

.portal-crown .portal-helm{
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

.portal-crown .portal-sigil{
      display: flex;
      align-items: center;
    }

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

.portal-crown .portal-conduit{
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 32px;
    }

.portal-crown .portal-crest{
      color: #8fa0c0;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: 0.35s ease;
      position: relative;
      padding: 8px 0;
      min-width: 0;
    }

.portal-crown .portal-crest:hover, .portal-crown .portal-crest.portal-active{
      color: #24cef0;
      text-shadow: 0 0 10px rgba(36, 206, 240, 0.3);
    }

.portal-crown .portal-crest::after{
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #24cef0;
      box-shadow: 0 0 8px #24cef0;
      transition: 0.35s ease;
    }

.portal-crown .portal-crest:hover::after, .portal-crown .portal-crest.portal-active::after{
      width: 100%;
    }

@media (max-width: 768px){.portal-crown .portal-helm{
        height: auto;
        padding: 20px 0;
        flex-direction: column;
        gap: 20px;
      }

.portal-crown .portal-conduit{
        justify-content: center;
        gap: 20px;
      }}

.portal-crown {
    background: rgb(7, 11, 21);
    background-image: none;
}

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

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

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

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

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

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

.bedrock-sole .bedrock-cocoon{
      width: 100%;
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 24px;
    }

.bedrock-sole{
      background-color: #04070e;
      border-top: 1px solid #1e2d4a;
      padding: 80px 0 40px;
    }

.bedrock-sole .bedrock-bedrock{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 60px;
    }

.bedrock-sole .bedrock-sole-brand{
      grid-column: span 2;
    }

@media (max-width: 768px){.bedrock-sole .bedrock-sole-brand{
        grid-column: span 1;
      }}

.bedrock-sole .bedrock-brand-name{
      font-size: 24px;
      font-weight: 800;
      color: #f3f5f9;
      margin-bottom: 20px;
      letter-spacing: 1px;
    }

.bedrock-sole .bedrock-brand-desc{
      color: #8fa0c0;
      font-size: 14px;
      max-width: 280px;
      line-height: 1.6;
    }

.bedrock-sole .bedrock-sole-column-glyph{
      font-size: 15px;
      font-weight: 700;
      color: #f3f5f9;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

.bedrock-sole .bedrock-sole-mirage{
      list-style: none;
    }

.bedrock-sole .bedrock-sole-sheath{
      margin-bottom: 12px;
    }

.bedrock-sole .bedrock-sole-crest{
      color: #8fa0c0;
      text-decoration: none;
      font-size: 14px;
      transition: 0.35s ease;
    }

.bedrock-sole .bedrock-sole-crest:hover{
      color: #24cef0;
    }

.bedrock-sole .bedrock-sole-abyss{
      border-top: 1px solid #1e2d4a;
      padding-top: 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      font-size: 13px;
      color: #8fa0c0;
    }