:root {
            --primary: #db8776;
            --primary-soft: rgba(219, 135, 118, 0.1);
            --accent-light: #fdf6f4;
            --radius: 20px;
            --bg: #fff;
            --text: #2d2d2d;
            --text-muted: #666;
            --surface: rgba(255, 255, 255, 0.96);
            --shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
            --border: 1px solid rgba(219, 135, 118, 0.15);
        }

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

        body {
            font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* 导航栏复用与修正 */
        .crown {
            position: sticky;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .synap {
            max-width: 1200px;
            margin: 0 auto;
            height: 72px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
        }

        .glyph {
            height: 32px;
        }

        .glyph img {
            height: 100%;
        }

        .orbit {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .strand-axon {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.35s ease;
            position: relative;
        }

        .strand-axon:hover,
        .strand-axon.active {
            color: var(--primary);
        }

        .strand-axon.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        /* Main 布局 */
        .nexus {
            width: 100%;
            min-height: 85vh;
        }

        /* Hero 变体 - P2P Technology */
        .flare {
            display: flex;
            flex-wrap: wrap;
            padding: 6rem 5% 4rem;
            background: #f4f4f2;
            align-items: center;
            gap: 4rem;
        }

        .flare-hull {
            flex: 1;
            min-width: 320px;
        }

        .flare-apex {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            line-height: 1.15;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .flare-memo {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 600px;
            margin-bottom: 2.5rem;
        }

        .prism-veil {
            flex: 1;
            min-width: 320px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* SVG 动画卡片 */
        .zenith-voxel {
            background: var(--surface);
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: var(--border);
            width: 100%;
            max-width: 480px;
            transform: translateY(0);
            transition: transform 0.35s ease;
        }

        .zenith-voxel:hover {
            transform: translateY(-8px);
        }

        /* Optimization Tips - Aside Section */
        .flux-hull {
            padding: 5rem 5%;
            background: var(--accent-light);
        }

        .flux-apex {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 3.5rem;
            font-weight: 700;
        }

        .cluster-cella {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .shard-bead {
            flex: 1;
            min-width: 280px;
            max-width: 380px;
            background: #fff;
            padding: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.35s ease;
        }

        .shard-bead:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-color: var(--primary);
        }

        .signet-hull {
            width: 60px;
            height: 60px;
            background: var(--primary-soft);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .shard-apex {
            font-size: 1.35rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .shard-memo {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        /* Status Check - Div Section */
        .terra-vault {
            padding: 6rem 5%;
            background: #fff;
            text-align: center;
        }

        .belt-proof {
            max-width: 1000px;
            margin: 0 auto;
            background: #2d2d2d;
            border-radius: var(--radius);
            padding: 3rem;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .proof-apex {
            font-size: 2rem;
            margin-bottom: 3rem;
        }

        .proof-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-around;
        }

        .proof-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            min-width: 120px;
        }

        .node-status {
            width: 12px;
            height: 12px;
            background: #4caf50;
            border-radius: 50%;
            box-shadow: 0 0 10px #4caf50;
        }

        .node-value {
            font-size: 1.8rem;
            font-weight: 700;
            font-family: monospace;
        }

        .node-motto {
            font-size: 0.85rem;
            opacity: 0.7;
            text-transform: uppercase;
        }

        /* Footer */
        .keel {
            background: #fafafa;
            padding: 4rem 5%;
            border-top: 1px solid #eee;
        }

        .abyss-hull {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
        }

        .echo-memo {
            max-width: 300px;
        }

        .echo-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .abyss-belt {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .belt-cluster {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .cluster-apex {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .cluster-axon {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: color 0.3s;
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .flare {
                flex-direction: column;
                padding-top: 3rem;
                text-align: center;
            }
            .flare-hull, .prism-veil {
                width: 100%;
            }
            .orbit {
                display: none; /* Mobile logic handled by lib/runtime.js */
            }
            .proof-grid {
                flex-direction: column;
                align-items: center;
            }
        }

        .jolt-primary {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 1.2rem 2.8rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 10px 20px rgba(219, 135, 118, 0.3);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .jolt-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(219, 135, 118, 0.4);
        }

.synap-crown {
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--neutral-900);
}
.synap-crown,
.synap-crown *,
.synap-crown *::before,
.synap-crown *::after {
    box-sizing: border-box;
}

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

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

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

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

.synap-crown a.synap-strand-axon {
    --aisite-shell-nav-padding: 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;
}

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

.synap-crown{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(219, 135, 118, 0.1);
        }

.synap-crown .synap-synap{
            max-width: 1300px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

.synap-crown .synap-glyph{
            height: 32px;
            min-width: 0;
        }

.synap-crown .synap-glyph img{
            height: 100%;
            display: block;
        }

.synap-crown .synap-orbit{
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
        }

.synap-crown .synap-strand-axon{
            font-size: 0.95rem;
            font-weight: 500;
            color: #666666;
            position: relative;
        }

.synap-crown .synap-strand-axon:hover{
            color: #db8776;
        }

.synap-crown .synap-strand-axon.active{
            color: #db8776;
        }

.synap-crown .synap-strand-axon.active::after{
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #db8776;
            border-radius: 2px;
        }

@media (max-width: 768px){.synap-crown .synap-synap{
                flex-direction: column;
                gap: 1.5rem;
            }

.synap-crown .synap-orbit{
                gap: 1rem;
                justify-content: center;
            }}

.synap-crown {
    background: rgb(255, 255, 255);
    background-image: none;
}

.abyss-keel {
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--neutral-900);
}
.abyss-keel,
.abyss-keel *,
.abyss-keel *::before,
.abyss-keel *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.abyss-keel{
            background: #f4f4f2;
            padding: 6rem 2rem 3rem;
        }

.abyss-keel .abyss-abyss{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 4rem;
            border-bottom: 1px solid #ddd;
            padding-bottom: 4rem;
        }

.abyss-keel .abyss-terra-info{
            flex: 1.5;
            min-width: 280px;
        }

.abyss-keel .abyss-terra-brand{
            font-size: 1.8rem;
            font-weight: 900;
            color: #db8776;
            margin-bottom: 1.5rem;
        }

.abyss-keel .abyss-terra-memo{
            color: #666666;
            max-width: 350px;
        }

.abyss-keel .abyss-terra-links{
            flex: 1;
            min-width: 150px;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

.abyss-keel .abyss-terra-apex{
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2d2d2d;
        }

.abyss-keel .abyss-terra-axon{
            color: #666666;
            font-size: 0.95rem;
        }

.abyss-keel .abyss-terra-axon:hover{
            color: #db8776;
        }

.abyss-keel .abyss-copyright{
            max-width: 1300px;
            margin: 2rem auto 0;
            text-align: center;
            color: #999;
            font-size: 0.85rem;
        }