:root {
            --bg-deep: #070a0f;
            --bg-panel: #111721;
            --bg-surface: #1a2230;
            --text-main: #f0f4f8;
            --text-sub: #94a3b8;
            --accent: #3bc1f5;
            --accent-dim: rgba(59, 193, 245, 0.15);
            --radius: 12px;
            --radius-lg: 20px;
            --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --font-serif: "Georgia", "Times New Roman", Times, serif;
            --transition: 0.15s ease;
            --shadow-base: 0 4px 20px rgba(0,0,0,0.3);
            --shadow-hover: 0 12px 30px rgba(0,0,0,0.5), 0 0 15px rgba(59, 193, 245, 0.2);
            --border-glow: 1px solid rgba(59, 193, 245, 0.3);
            --border-dim: 1px solid #283446;
        }

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

        body {
            font-family: var(--font);
            background-color: var(--bg-deep);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        /* 强制换行与Flex规则 */
        .flex-pool {
            display: flex;
            flex-wrap: wrap;
        }
        .flex-pool > * {
            min-width: 0;
        }
        .byte-wrap {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .byte-cn {
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* 强制复用：导航栏样式 */
        .crown {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(7, 10, 15, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid #1a2230;
            z-index: 100;
        }
        .vault {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .mark {
            height: 32px;
            display: flex;
            align-items: center;
        }
        .mark img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }
        .route {
            display: flex;
            gap: 2rem;
        }
        .dot {
            display: flex;
        }
        .wire {
            color: var(--text-sub);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .wire:hover {
            color: var(--text-main);
        }
        .wire.active {
            color: var(--accent);
        }
        .wire.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--accent);
        }

        /* 主容器 */
        .vault-core {
            padding-top: 72px;
            min-height: 100vh;
        }

        /* Section 1: Hero (Intro) */
        .nexus {
            padding: 140px 2rem 100px;
            background: radial-gradient(circle at 70% 30%, rgba(59, 193, 245, 0.08) 0%, transparent 50%),
                        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-panel) 100%);
            position: relative;
            overflow: hidden;
            border-bottom: var(--border-dim);
            justify-content: center;
        }
        .nexus::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
            pointer-events: none;
        }
        .nexus-tunnel {
            max-width: 1000px;
            width: 100%;
            text-align: center;
            position: relative;
            z-index: 2;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .peak-xl {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--text-main);
            white-space: normal;
        }
        .peak-highlight {
            background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .byte-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--text-sub);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .radar-mesh {
            margin-top: 2rem;
            display: inline-flex;
            gap: 1rem;
            padding: 0.5rem 1rem;
            background: rgba(26, 34, 48, 0.5);
            border: var(--border-dim);
            border-radius: 100px;
            backdrop-filter: blur(10px);
        }
        .radar-dot {
            font-size: 0.85rem;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: monospace;
        }

        /* Section 2: Preset Rules (Capability) */
        .pulse {
            padding: 100px 2rem;
            background-color: var(--bg-panel);
            justify-content: center;
        }
        .pulse-tunnel {
            max-width: 1200px;
            width: 100%;
            gap: 4rem;
        }
        .pulse-head {
            width: 100%;
            text-align: center;
            margin-bottom: 2rem;
        }
        .peak-lg {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-main);
        }
        .pool-grid {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .pod {
            background: var(--bg-surface);
            border: var(--border-dim);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            position: relative;
            transition: all var(--transition);
            box-shadow: var(--shadow-base);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            overflow: hidden;
        }
        .pod::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 3px;
            background: transparent;
            transition: background var(--transition);
        }
        .pod:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(59, 193, 245, 0.2);
        }
        .pod:hover::before {
            background: var(--accent);
        }
        .glyph-vault {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: var(--bg-panel);
            border: var(--border-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }
        .glyph-vault svg {
            width: 32px;
            height: 32px;
            fill: currentColor;
        }
        .peak-md {
            font-size: 1.25rem;
            font-weight: 600;
        }
        .byte-desc {
            color: var(--text-sub);
            font-size: 0.95rem;
        }

        /* Section 3: Advanced Matrix (Detail) */
        .flare {
            padding: 120px 2rem;
            background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-deep) 100%);
            border-top: var(--border-dim);
            justify-content: center;
        }
        .flare-tunnel {
            max-width: 1200px;
            width: 100%;
            align-items: center;
            gap: 4rem;
        }
        .flare-band {
            flex: 1;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .cloak-media {
            flex: 1.2;
            min-width: 320px;
            position: relative;
            border-radius: var(--radius-lg);
            padding: 1rem;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
            box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
        }
        .lens {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            display: block;
            box-shadow: var(--shadow-base);
            border: var(--border-dim);
        }
        .dot-mesh {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .dot-row {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: var(--bg-surface);
            border-radius: 8px;
            border-left: 3px solid transparent;
            transition: all var(--transition);
        }
        .dot-row:hover {
            background: var(--bg-panel);
            border-left-color: var(--accent);
        }
        .dot-glyph {
            color: var(--accent);
            margin-top: 2px;
        }

        /* Section 4: LAN Sharing (Capability - Serif Style) */
        .cloak {
            padding: 100px 2rem;
            background-color: var(--bg-deep);
            justify-content: center;
            position: relative;
        }
        .cloak::after {
            content: '';
            position: absolute;
            top: 0; right: 0; width: 30vw; height: 100%;
            background: radial-gradient(circle at 100% 50%, rgba(59, 193, 245, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .cloak-tunnel {
            max-width: 900px; /* Narrower for reading */
            width: 100%;
            flex-direction: column;
            gap: 2.5rem;
        }
        .peak-serif {
            font-family: var(--font-serif);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: normal;
            font-style: italic;
            color: var(--text-main);
            position: relative;
            padding-bottom: 1rem;
        }
        .peak-serif::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 60px;
            height: 2px;
            background: var(--accent);
        }
        .byte-serif {
            font-size: 1.1rem;
            line-height: 2;
            color: #b0c4de;
        }
        .packet-info {
            background: var(--bg-panel);
            border: 1px dashed #283446;
            padding: 2rem;
            border-radius: var(--radius);
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        .packet-info svg {
            width: 48px;
            height: 48px;
            color: var(--accent);
            flex-shrink: 0;
        }

        /* Footer */
        .root {
            background-color: var(--bg-panel);
            border-top: var(--border-dim);
            padding: 4rem 2rem;
            display: flex;
            justify-content: center;
        }
        .base-vault {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .peak-brand {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--text-main);
        }
        .anchor-mesh {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .anchor-wire {
            color: var(--text-sub);
            font-size: 0.9rem;
        }
        .anchor-wire:hover {
            color: var(--accent);
        }
        .byte-byte {
            color: #475569;
            font-size: 0.85rem;
            margin-top: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .vault {
                padding: 0 1rem;
            }
            .route {
                display: none; /* Simplified for mobile in this constrained example */
            }
            .nexus {
                padding: 100px 1rem 60px;
            }
            .flare-band, .cloak-media {
                min-width: 100%;
            }
            .packet-info {
                flex-direction: column;
                text-align: center;
            }
        }

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

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

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

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

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

.route-crown a.route-wire {
    --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;
}

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

.route-crown .route-route, .route-crown .route-vault{
            display: flex;
            flex-wrap: wrap;
        }

.route-crown .route-route > *, .route-crown .route-vault > *{
            min-width: 0;
        }

.route-crown{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 72px;
            background: rgba(7, 10, 15, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid #283446;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2rem;
        }

.route-crown .route-vault{
            width: 100%;
            max-width: 1200px;
            justify-content: space-between;
            align-items: center;
        }

.route-crown .route-mark{
            display: flex;
            align-items: center;
            height: 32px;
        }

.route-crown .route-mark img{
            height: 100%;
            width: auto;
            object-fit: contain;
        }

.route-crown .route-route{
            gap: 2rem;
        }

.route-crown .route-wire{
            color: #94a3b8;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.15s ease;
            position: relative;
        }

.route-crown .route-wire:hover, .route-crown .route-wire:focus, .route-crown .route-wire.active{
            color: #f0f4f8;
        }

.route-crown .route-wire.active::after{
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #3bc1f5;
            box-shadow: 0 -2px 10px rgba(59, 193, 245, 0.3);
        }

@media (max-width: 768px){.route-crown .route-route{
                display: none; 
            }

.route-crown{
                justify-content: flex-start;
            }}

.route-crown {
    background: rgb(7, 10, 15);
    background-image: none;
}

.anchor-root {
    font-family: var(--font);
    line-height: 1.6;
    word-break: break-word;
    color: var(--text-main);
}
.anchor-root,
.anchor-root *,
.anchor-root *::before,
.anchor-root *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-root .anchor-vault{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-root .anchor-vault > *{
            min-width: 0;
        }

.anchor-root{
            background-color: #040609;
            border-top: 1px solid #283446;
            padding: 4rem 2rem;
            display: flex;
            justify-content: center;
        }

.anchor-root .anchor-vault{
            max-width: 1200px;
            width: 100%;
            justify-content: space-between;
            align-items: center;
        }

.anchor-root .anchor-base{
            font-size: 1.25rem;
            font-weight: 700;
            color: #f0f4f8;
            letter-spacing: 1px;
        }

.anchor-root .anchor-anchor-pool{
            display: flex;
            gap: 1.5rem;
        }

.anchor-root .anchor-anchor{
            color: #94a3b8;
            font-size: 0.875rem;
            transition: color 0.15s ease;
        }

.anchor-root .anchor-anchor:hover{
            color: #3bc1f5;
        }

@media (max-width: 768px){.anchor-root .anchor-vault{
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }}