:root {
            --primary: #24cef0;
            --primary-glow: rgba(36, 206, 240, 0.3);
            --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;
            --transition-speed: 0.35s;
        }

        * {
            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;
        }

        main {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 顶部导航区域 */
        .crown {
            background-color: rgba(7, 11, 21, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }

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

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

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

        .crest {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color var(--transition-speed) ease, text-shadow var(--transition-speed) ease;
        }

        .crest:hover,
        .crest.active {
            color: var(--primary);
            text-shadow: 0 0 8px var(--primary-glow);
        }

        /* 首屏展示区 */
        .beacon {
            padding: 100px 0 80px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }

        .beacon-jolt {
            flex: 1 1 500px;
            min-width: 0;
        }

        .glyph-cocoon {
            font-size: clamp(32px, 5vw, 52px);
            line-height: 1.15;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 24px;
            word-break: keep-all;
            white-space: normal;
        }

        .glyph-cocoon span {
            color: var(--primary);
            text-shadow: 0 0 20px var(--primary-glow);
        }

        .weave-body {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 36px;
            max-width: 600px;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .mirage-spark {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .spark-primary {
            padding: 16px 36px;
            font-weight: 600;
            border-radius: 6px;
            background-color: var(--primary);
            color: var(--bg-deep);
            box-shadow: 0 4px 20px var(--primary-glow);
            border: 1px solid var(--primary);
            text-decoration: none;
            transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
            display: inline-block;
        }

        .spark-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(36, 206, 240, 0.5);
        }

        .spark-secondary {
            padding: 16px 36px;
            font-weight: 600;
            border-radius: 6px;
            background-color: transparent;
            color: var(--text-main);
            border: 1px solid var(--border-color);
            text-decoration: none;
            transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease, transform var(--transition-speed) ease;
            display: inline-block;
        }

        .spark-secondary:hover {
            background-color: rgba(30, 45, 74, 0.4);
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .halo-graphic {
            flex: 1 1 450px;
            min-width: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .halo-graphic svg {
            width: 100%;
            max-width: 480px;
            height: auto;
        }

        /* 核心特性区 */
        .facade {
            padding: 80px 0;
            border-top: 1px solid var(--border-color);
        }

        .glyph-sub {
            font-size: clamp(24px, 4vw, 36px);
            line-height: 1.3;
            font-weight: 700;
            text-align: center;
            margin-bottom: 48px;
            color: var(--text-main);
            word-break: keep-all;
            white-space: normal;
        }

        .node-mirage {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

        .capsule-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: 6px;
            padding: 32px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .capsule-shard:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 12px 40px rgba(36, 206, 240, 0.15);
        }

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

        .tether-halo svg {
            width: 28px;
            height: 28px;
            fill: var(--primary);
        }

        .capsule-shard h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-main);
        }

        .capsule-shard p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 测速数据展示区 */
        .vault {
            padding: 80px 0;
            border-top: 1px solid var(--border-color);
        }

        .vault-jolt {
            background: linear-gradient(135deg, rgba(14, 22, 38, 0.9), rgba(22, 34, 56, 0.9));
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .vault-scroll {
            width: 100%;
            overflow-x: auto;
            margin-top: 32px;
            border-radius: 6px;
            border: 1px solid var(--border-color);
        }

        .vault-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 750px;
        }

        .vault-table th,
        .vault-table td {
            padding: 18px 24px;
            border-bottom: 1px solid var(--border-color);
            font-size: 15px;
            word-break: keep-all;
        }

        .vault-table th {
            color: var(--text-muted);
            font-weight: 600;
            background-color: rgba(22, 34, 56, 0.4);
        }

        .vault-table tr:last-child td {
            border-bottom: none;
        }

        .vault-table tr:hover td {
            background-color: rgba(36, 206, 240, 0.03);
        }

        .status-spark {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            background-color: rgba(36, 206, 240, 0.1);
            color: var(--primary);
            border: 1px solid rgba(36, 206, 240, 0.2);
        }

        .vault-whisper-wrap {
            margin-top: 36px;
            text-align: center;
        }

        .vault-whisper-wrap p {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 12px;
        }

        .vault-whisper-wrap a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        /* 专线架构区 */
        .matrix {
            padding: 80px 0;
            border-top: 1px solid var(--border-color);
        }

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

        .matrix-weave {
            flex: 1 1 500px;
            min-width: 0;
        }

        .matrix-weave p {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 24px;
            line-height: 1.8;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .matrix-visual {
            flex: 1 1 450px;
            min-width: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .matrix-node {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: border-color var(--transition-speed) ease, transform var(--transition-speed) ease;
        }

        .matrix-node:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .matrix-node h4 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .matrix-node p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 底部信息区域 */
        .sole-abyss {
            background-color: var(--bg-deep);
            border-top: 1px solid var(--border-color);
            padding: 60px 0 40px;
            margin-top: 60px;
        }

        .sole-jolt {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

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

        .sole-brand {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

        .sole-brand span {
            color: var(--primary);
        }

        .sole-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .sole-twig {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
        }

        .sole-sheath {
            min-width: 120px;
        }

        .sole-sheath h5 {
            font-size: 14px;
            color: var(--text-main);
            margin-bottom: 16px;
            font-weight: 600;
        }

        .sole-sheath ul {
            list-style: none;
        }

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

        .sole-sheath ul li a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: color var(--transition-speed) ease;
        }

        .sole-sheath ul li a:hover {
            color: var(--primary);
        }

        .sole-copyright {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 24px 24px 0;
            border-top: 1px solid var(--border-color);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-muted);
            gap: 16px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .cocoon.helm {
                flex-direction: column;
                gap: 16px;
                padding: 16px;
            }
            .conduit {
                justify-content: center;
                gap: 16px;
            }
            .beacon {
                padding: 60px 0 40px;
                text-align: center;
            }
            .mirage-spark {
                justify-content: center;
            }
            .sole-jolt {
                flex-direction: column;
                gap: 32px;
            }
            .sole-twig {
                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;
    }