/* ==========================================================================
           Base & Variables (Inherited from Home)
           ========================================================================== */
        :root {
            --brand-color: #4a68d6;
            --brand-color-hover: #3a55b6;
            --bg-base: #050507;
            --bg-surface: #121216;
            --bg-elevated: #1a1a20;
            --text-main: #f4f4f5;
            --text-muted: #a1a1aa;
            --text-dark: #050507;
            --radius-sm: 7px;
            --radius-md: 10px;
            --radius-lg: 13px;
            --shadow-float: 0 20px 40px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08);
            --shadow-glow: 0 4px 14px 0 rgba(74, 104, 214, 0.4);
            --border-subtle: rgba(255, 255, 255, 0.08);
            --transition: 0.15s ease;
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --layout-max: 1200px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-base);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

        /* Typography */
        .apex-1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; white-space: normal; }
        .apex-2 { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; white-space: normal; }
        .apex-3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; white-space: normal; }
        
        .murmur { color: var(--text-muted); font-size: 1.125rem; word-break: break-word; overflow-wrap: break-word; }
        .murmur-sm { color: var(--text-muted); font-size: 0.875rem; word-break: break-word; overflow-wrap: break-word; }
        
        /* Layout Helpers */
        .flex-safe {
            max-width: var(--layout-max);
            margin: 0 auto;
            width: 100%;
            padding: 0 1.5rem;
        }

        .grid {
            display: grid;
            gap: 2rem;
        }

        .flex {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .flex > * {
            min-width: 0;
        }

        /* ==========================================================================
           Header & Navigation (Strict Reuse)
           ========================================================================== */
        .crown {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(5, 5, 7, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .crown-cocoon {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 4.5rem;
        }

        .crest img {
            height: 28px;
            width: auto;
            display: block;
        }

        .yarn {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .yarn > * { min-width: 0; }

        .tie {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            padding: 0.5rem 0;
            position: relative;
        }

        .tie:hover {
            color: var(--text-main);
        }

        .tie.active {
            color: var(--text-main);
        }

        .tie.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--brand-color);
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .yarn {
                display: none; /* Simplified for mobile, usually needs a toggle */
            }
        }

        /* ==========================================================================
           Buttons
           ========================================================================== */
        .ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.75rem;
            background-color: var(--brand-color);
            color: #fff;
            font-weight: 600;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-glow);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all var(--transition);
            cursor: pointer;
        }

        .ping:hover {
            background-color: var(--brand-color-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px 0 rgba(74, 104, 214, 0.6);
        }

        .ping-alt {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            box-shadow: none;
        }
        .ping-alt:hover {
            background-color: var(--bg-elevated);
            border-color: rgba(255,255,255,0.2);
        }

        /* ==========================================================================
           Hero Section (Creative Seed: offset_overlap)
           ========================================================================== */
        .pulse {
            padding: 6rem 0 8rem;
            position: relative;
            overflow: hidden;
        }

        /* Background glow effect inherited from home */
        .pulse::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 50%;
            background: radial-gradient(circle, rgba(74, 104, 214, 0.15) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .pulse-cocoon {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .pulse-cocoon {
            position: relative;
            z-index: 2;
        }

        .pulse-graphic {
            position: relative;
            z-index: 1;
            /* Offset Overlap Magic */
            margin-left: -15%;
            margin-top: 10%;
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-base) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 3rem;
            box-shadow: var(--shadow-float);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .highlight {
            background: linear-gradient(to right, #ffffff, #8892b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .jolt-cluster {
            margin-top: 2.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .jolt-cluster > * { min-width: 0; }

        @media (max-width: 992px) {
            .pulse-cocoon {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .pulse-graphic {
                margin-left: 0;
                margin-top: 0;
            }
        }

        /* ==========================================================================
           Configuration Guide (Structural Mix: div instead of section)
           ========================================================================== */
        .cocoon {
            padding: 5rem 0;
            background-color: var(--bg-base);
            border-top: 1px solid var(--border-subtle);
        }

        .cocoon-crown {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem auto;
        }

        .node-cluster {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .node {
            background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(18,18,22,0.4) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 2.5rem;
            transition: transform var(--transition), box-shadow var(--transition);
            position: relative;
            overflow: hidden;
        }

        .node:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-float);
            border-color: rgba(255,255,255,0.15);
        }

        /* Subtle top border accent */
        .node::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--brand-color), transparent);
            opacity: 0.5;
        }

        .glyph-cocoon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: rgba(74, 104, 214, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--brand-color);
        }

        .node .apex-3 {
            margin-bottom: 1rem;
            color: var(--text-main);
        }

        /* ==========================================================================
           Proxy & Channels (Structural Mix: article instead of section)
           ========================================================================== */
        .hive {
            padding: 6rem 0;
            background: radial-gradient(ellipse at bottom, var(--bg-surface) 0%, var(--bg-base) 100%);
        }

        .hive-cocoon {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: stretch;
        }

        .packet {
            background: var(--bg-elevated);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .packet-crown {
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-subtle);
            padding-bottom: 1.5rem;
        }

        .shard-cluster {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }
        .shard-cluster > * { min-width: 0; }

        .shard {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--text-main);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .shard::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #4ade80; /* online status indicator */
        }

        .data-ribbon {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            background: var(--bg-base);
            border-radius: var(--radius-sm);
            margin-bottom: 1rem;
            border: 1px solid var(--border-subtle);
        }
        .data-ribbon > * { min-width: 0; }

        .data-stamp {
            font-weight: 600;
            color: var(--text-main);
        }
        .data-value {
            font-family: monospace;
            color: var(--brand-color);
        }

        @media (max-width: 992px) {
            .hive-cocoon {
                grid-template-columns: 1fr;
            }
        }

        /* ==========================================================================
           Footer
           ========================================================================== */
        .wake {
            border-top: 1px solid var(--border-subtle);
            padding: 4rem 0 2rem;
            background-color: var(--bg-base);
        }

        .wake-cocoon {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .wake .apex-3 {
            margin-bottom: 1.5rem;
        }

        .wake-yarn {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .wake-yarn .tie {
            padding: 0;
            font-size: 0.95rem;
        }
        .wake-yarn .tie::after { display: none; }

        .crust {
            padding-top: 2rem;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 0.875rem;
        }
        .crust > * { min-width: 0; }

        .anchor {
            font-weight: 700;
            color: var(--text-main);
            font-size: 1.25rem;
            letter-spacing: -0.02em;
        }

        @media (max-width: 768px) {
            .wake-cocoon {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

.nexus-crown .nexus-flex-safe{
            display: flex;
            flex-wrap: wrap;
        }

.nexus-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(5, 5, 7, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.nexus-crown .nexus-crown-cocoon{
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2rem;
            justify-content: space-between;
            align-items: center;
        }

.nexus-crown .nexus-crest{
            display: flex;
            align-items: center;
        }

.nexus-crown .nexus-crest img{
            height: 28px;
            width: auto;
        }

.nexus-crown .nexus-yarn{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.nexus-crown .nexus-tie{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.15s ease;
            position: relative;
        }

.nexus-crown .nexus-tie:hover, .nexus-crown .nexus-tie:focus{
            color: #f4f4f5;
        }

.nexus-crown .nexus-tie.active{
            color: #4a68d6;
        }

.nexus-crown .nexus-tie.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #4a68d6;
            border-radius: 2px;
        }

@media (max-width: 768px){.nexus-crown .nexus-crown-cocoon{
                padding: 1rem;
            }

.nexus-crown .nexus-yarn{
                gap: 1rem;
            }

.nexus-crown .nexus-tie{
                font-size: 0.85rem;
            }}

.nexus-crown {
    background: rgb(5, 5, 7);
    background-image: none;
}

.anchor-wake {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.6;
    color: var(--text-main);
}
.anchor-wake,
.anchor-wake *,
.anchor-wake *::before,
.anchor-wake *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-wake .anchor-murmur{
            word-break: break-word;
            overflow-wrap: break-word;
            line-height: 1.7;
        }

.anchor-wake .anchor-murmur-cn{
            word-break: keep-all;
        }

.anchor-wake .anchor-apex{
            white-space: normal;
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.2;
        }

.anchor-wake .anchor-flex-safe{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-wake .anchor-cocoon-bound{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

.anchor-wake{
            background-color: #000;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 4rem 0 2rem 0;
        }

.anchor-wake .anchor-wake-cocoon{
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            justify-content: space-between;
        }

.anchor-wake .anchor-wake-brand{
            flex: 1 1 300px;
        }

.anchor-wake .anchor-wake-brand .anchor-apex{
            font-size: 1.5rem;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            display: inline-block;
        }

.anchor-wake .anchor-wake-brand .anchor-murmur{
            color: #a1a1aa;
            font-size: 0.9rem;
            max-width: 80%;
        }

.anchor-wake .anchor-wake-cluster{
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

.anchor-wake .anchor-wake-col{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.anchor-wake .anchor-wake-col .anchor-apex{
            font-size: 1rem;
            color: #f4f4f5;
            margin-bottom: 0.5rem;
        }

.anchor-wake .anchor-anchor{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.15s ease;
        }

.anchor-wake .anchor-anchor:hover{
            color: #4a68d6;
        }

.anchor-wake .anchor-wake-bottom{
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: #52525b;
            font-size: 0.85rem;
        }

@media (max-width: 768px){.anchor-wake .anchor-wake-cocoon{
                flex-direction: column;
                gap: 2rem;
            }

.anchor-wake .anchor-wake-cluster{
                flex-direction: column;
                gap: 2rem;
            }}