:root {
            --primary: #2e84cf;
            --primary-glow: rgba(46, 132, 207, 0.15);
            --grain-color: #94a3b8;
            --crown-color: #f8fafc;
            --bg-deep: #020617;
            --bg-drift: #0f172a;
            --bg-shingle: #1e293b;
            --radius: 18px;
            --transition: 0.15s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-deep);
            color: var(--grain-color);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* 导航复用 */
        .apex {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(2, 6, 23, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .sluice {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
        }

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

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

        .twine {
            text-decoration: none;
            color: var(--grain-color);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            min-width: 0;
        }

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

        /* 主容器 */
        main {
            width: 100%;
            display: block;
        }

        .haven {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* 首屏展示 */
        .vista {
            padding: 6rem 0 4rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 2rem;
        }

        .crown-pond {
            font-size: clamp(2.5rem, 6vw, 4.2rem);
            color: var(--crown-color);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.02em;
            max-width: 900px;
            white-space: normal;
            word-break: break-word;
        }

        .grain-lodge {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--grain-color);
            word-break: break-word;
        }

        /* 数据导出模块 (Article Intro) */
        .lodge-intro {
            padding: 5rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
        }

        .shingle-tech {
            flex: 1;
            min-width: 300px;
            background: var(--bg-shingle);
            padding: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform var(--transition);
        }

        .shingle-tech:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .mark-spark {
            width: 56px;
            height: 56px;
            margin-bottom: 1.5rem;
            background: var(--primary-glow);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .crown-twig {
            font-size: 1.8rem;
            color: var(--crown-color);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .streak-flow {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .twig-data {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.05rem;
        }

        .mark-check {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: var(--primary);
        }

        /* 可视化建模 (Aside FAQ) */
        .haven-visual {
            background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-drift) 100%);
            padding: 6rem 0;
        }

        .casing-split {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

        .lens-frame {
            flex: 1.2;
            min-width: 320px;
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .lens-frame img {
            width: 100%;
            height: auto;
            display: block;
        }

        .billet-grain {
            flex: 0.8;
            min-width: 300px;
        }

        .gnaw-strike {
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50px;
            color: var(--crown-color);
            text-decoration: none;
            font-weight: 600;
            margin-top: 2rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gnaw-strike:hover {
            background: var(--primary);
            box-shadow: 0 0 20px var(--primary-glow);
        }

        /* 数据编辑器 (Article Proof) */
        .proof-grain {
            padding: 6rem 0;
        }

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

        .stump-shingle {
            background: #111827;
            padding: 2rem;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.03);
        }

        .spark-prime {
            background: var(--primary);
            color: #fff;
            padding: 1.2rem 2.8rem;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 25px rgba(46, 132, 207, 0.3);
            text-decoration: none;
            display: inline-block;
            transition: transform var(--transition);
        }

        .spark-prime:hover {
            transform: scale(1.05);
        }

        /* 页脚 */
        .base-depth {
            padding: 4rem 0;
            background: var(--bg-deep);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .basin-info {
            max-width: 800px;
            margin: 0 auto;
        }

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

        .twine-base {
            margin: 0 1rem;
            color: var(--grain-color);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .twine-base:hover {
            color: var(--primary);
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .vista { padding: 4rem 0 2rem; }
            .lodge-intro, .casing-split { flex-direction: column; }
            .raft { justify-content: center; gap: 1rem; }
            .crown-pond { font-size: 2.2rem; }
            .shingle-tech { width: 100%; }
        }

.current-apex {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--grain-color);
}
.current-apex,
.current-apex *,
.current-apex *::before,
.current-apex *::after {
    box-sizing: border-box;
}

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

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

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

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

.current-apex a.current-twine.current-current,
.current-apex a.current-twine {
    --aisite-shell-nav-padding: 0.5rem 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;
}

.current-apex a.current-twine.current-current,
.current-apex a.current-twine.current-current:hover,
.current-apex a.current-twine.current-current:focus,
.current-apex a.current-twine.current-current:active,
.current-apex a.current-twine.current-current.active,
.current-apex a.current-twine.current-current[aria-current="page"],
.current-apex a.current-twine,
.current-apex a.current-twine:hover,
.current-apex a.current-twine:focus,
.current-apex a.current-twine:active,
.current-apex a.current-twine.active,
.current-apex a.current-twine[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);
}

.current-apex{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(2, 6, 23, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

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

.current-apex .current-glyph{
            height: 38px;
            min-width: 0;
        }

.current-apex .current-glyph img{
            height: 100%;
            display: block;
        }

.current-apex .current-raft{
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
            min-width: 0;
        }

.current-apex .current-twine{
            text-decoration: none;
            color: #94a3b8;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
            padding: 0.5rem 0;
        }

.current-apex .current-twine:hover, .current-apex .current-twine.current-current{
            color: #2e84cf;
        }

@media (max-width: 768px){.current-apex .current-sluice{
                justify-content: center;
                gap: 1rem;
            }

.current-apex .current-raft{
                justify-content: center;
            }}

.current-apex {
    background: rgb(2, 6, 23);
    background-image: none;
}

.basin-base {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--grain-color);
}
.basin-base,
.basin-base *,
.basin-base *::before,
.basin-base *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.basin-base{
            background: #020617;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 5rem 0 3rem;
            margin-top: 5rem;
        }

.basin-base .basin-basin-grid{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }

.basin-base .basin-depth-brand{
            grid-column: span 2;
        }

.basin-base .basin-crown-base{
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

.basin-base .basin-grain-base{
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

.basin-base .basin-twine-base{
            display: block;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            transition: color 0.15s ease;
        }

.basin-base .basin-twine-base:hover{
            color: #2e84cf;
        }

@media (max-width: 1024px){.basin-base .basin-depth-brand{
                grid-column: span 1;
            }}