/* 视觉契约与基础变量 */
        :root {
            --brand-color: #4a68d6;
            --brand-color-hover: #5b79eb;
            --bg-base: #050507;
            --bg-surface: #121216;
            --bg-elevated: #1a1a20;
            --text-main: #f4f4f5;
            --text-muted: #a1a1aa;
            --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);
            --border-subtle: rgba(255, 255, 255, 0.08);
            --transition-speed: 0.15s ease;
        }

        /* 基础重置与排版 */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
            background-color: var(--bg-base);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* 文本换行规范 */
        .murmur, h1, h2, h3, p, span, a {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        p {
            word-break: keep-all; /* 中文保持词组 */
        }

        h1, h2, h3 {
            white-space: normal;
            font-weight: 700;
        }

        /* 布局通用规则 */
        .realm {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

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

        /* Flexbox 必备规则 */
        .cluster, .yarn, .crown-cocoon {
            display: flex;
            flex-wrap: wrap;
        }

        .cluster > *, .yarn > * {
            min-width: 0;
        }

        /* --- 导航栏复用样式 (强制继承) --- */
        .crown {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(5, 5, 7, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
            padding: 1rem 0;
        }

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

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

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

        .yarn {
            gap: 2rem;
            align-items: center;
        }

        .tie {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color var(--transition-speed);
        }

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

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

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

        /* --- 顶层内容块：突破界限的扩展生态 (Hero) --- */
        .pulse {
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(74, 104, 214, 0.05) 0%, var(--bg-base) 100%);
        }

        .pulse::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 60%;
            background: radial-gradient(circle, rgba(74, 104, 214, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .pulse-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .pulse-murmur {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            z-index: 2;
        }

        .apex-pulse {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.15;
            letter-spacing: -0.03em;
            color: var(--text-main);
        }

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

        .murmur-lead {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 90%;
            line-height: 1.8;
        }

        .murmur-lead strong {
            color: var(--text-main);
            font-weight: 600;
        }

        .ping-cluster {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }

        .ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.8rem;
            background-color: var(--brand-color);
            color: #fff;
            font-weight: 600;
            text-decoration: none;
            border-radius: var(--radius-sm);
            box-shadow: 0 4px 14px 0 rgba(74, 104, 214, 0.4);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all var(--transition-speed);
            cursor: pointer;
        }

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

        .ping-alt {
            background-color: transparent;
            border: 1px solid var(--border-subtle);
            box-shadow: none;
            color: var(--text-main);
        }

        .ping-alt:hover {
            background-color: var(--bg-surface);
            border-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        /* Data UI 视觉承载 (无图设计) */
        .pulse-visual {
            position: relative;
            z-index: 2;
            perspective: 1000px;
        }

        .cocoon-ui {
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-base) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-float);
            padding: 1.5rem;
            transform: rotateY(-5deg) rotateX(5deg);
            transition: transform 0.5s ease;
        }

        .cocoon-ui:hover {
            transform: rotateY(0) rotateX(0);
        }

        .cocoon-crown {
            display: flex;
            gap: 6px;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-subtle);
            padding-bottom: 1rem;
        }

        .knob {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .knob-r { background-color: #ff5f56; }
        .knob-y { background-color: #ffbd2e; }
        .knob-g { background-color: #27c93f; }

        .cocoon-body {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .ribbon-line {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .glyph-status {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: var(--brand-color);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .ribbon-track {
            flex: 1;
            height: 8px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
            overflow: hidden;
        }

        .ribbon-fill {
            height: 100%;
            background-color: var(--brand-color);
            border-radius: 4px;
        }
        
        .ribbon-fill-1 { width: 100%; background-color: #27c93f; }
        .ribbon-fill-2 { width: 60%; background-color: #ffbd2e; }
        .ribbon-fill-3 { width: 85%; }

        .murmur-code {
            font-family: monospace;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }

        /* --- 顶层内容块：热门自动化与效率脚本 (Acquire) --- */
        .flare {
            padding: 6rem 0;
            background-color: var(--bg-base);
            position: relative;
        }

        .flare-crown {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .apex-realm {
            font-size: clamp(2rem, 3vw, 2.5rem);
            color: var(--text-main);
        }

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

        .packet {
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            transition: all var(--transition-speed);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .packet::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--brand-color), transparent);
            opacity: 0;
            transition: opacity var(--transition-speed);
        }

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

        .packet:hover::before {
            opacity: 1;
        }

        .glyph-cocoon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: rgba(74, 104, 214, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(74, 104, 214, 0.2);
        }

        .glyph-glyph {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: var(--brand-color);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .apex-node {
            font-size: 1.25rem;
            color: var(--text-main);
        }

        .murmur-node {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            flex-grow: 1;
        }

        /* --- 顶层内容块：构建你的专属扩展 (Proof) --- */
        .beacon {
            padding: 6rem 0 8rem;
            background: linear-gradient(0deg, var(--bg-surface) 0%, var(--bg-base) 100%);
            border-top: 1px solid var(--border-subtle);
        }

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

        .beacon-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.5rem;
        }

        .shard-yarn {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 2rem;
        }

        .shard {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.2rem;
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            transition: background var(--transition-speed);
        }

        .shard:hover {
            background: rgba(255,255,255,0.05);
        }

        .shard-glyph {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            stroke: var(--brand-color);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            margin-top: 2px;
        }

        .shard-murmur {
            color: var(--text-main);
            font-size: 1rem;
            font-weight: 500;
        }

        /* 开发者数据流可视化 (替代传统图片) */
        .data-hive {
            background: var(--bg-base);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            position: relative;
            box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
        }

        .data-node {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background: rgba(74, 104, 214, 0.05);
            border-left: 3px solid var(--brand-color);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-family: monospace;
            color: var(--text-muted);
            font-size: 0.9rem;
            position: relative;
        }

        .data-node::after {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            width: 12px;
            height: 1px;
            background: var(--brand-color);
        }

        .data-highlight {
            color: #ffbd2e;
        }

        .data-string {
            color: #27c93f;
        }

        /* --- 页脚区域 --- */
        .wake {
            border-top: 1px solid var(--border-subtle);
            background-color: var(--bg-surface);
            padding: 3rem 0;
        }

        .wake-cocoon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

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

        .wake-links {
            display: flex;
            gap: 1.5rem;
        }

        .wake-tie {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--transition-speed);
        }

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

        .wake-murmur {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: 1rem;
        }

        /* --- 响应式断点 --- */
        @media (max-width: 1024px) {
            .pulse-layout, .beacon-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .pulse-visual {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .pulse { padding: 5rem 0 4rem; }
            .flare { padding: 4rem 0; }
            .beacon { padding: 4rem 0; }
            
            .crown-cocoon {
                flex-direction: column;
                gap: 1rem;
            }
            
            .yarn {
                gap: 1rem;
                justify-content: center;
                width: 100%;
            }
            
            .cluster-grid {
                grid-template-columns: 1fr;
            }

            .data-hive {
                padding: 1rem;
            }
        }

.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;
            }}