:root {
            --primary: #2e84cf;
            --secondary: #3b82f6;
            --grain-color: #94a3b8;
            --crown-color: #f8fafc;
            --bg-deep: #020617;
            --bg-surface: #1e293b;
            --radius: 18px;
            --transition: 0.15s ease;
        }

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

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

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

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

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

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

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

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

        .twine.active {
            position: relative;
        }

        .twine.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
        }

        /* 主体布局结构 */
        main {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            padding-bottom: 6rem;
        }

        /* 第一部分: Lodge (Hero变体) */
        .lodge {
            padding: 6rem 2rem 4rem;
            text-align: center;
            background: radial-gradient(circle at 50% 30%, rgba(46, 132, 207, 0.15) 0%, transparent 70%);
        }

        .crown-pond {
            max-width: 900px;
            margin: 0 auto 1.5rem;
        }

        .crown-pond h1 {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            color: var(--crown-color);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .grain-vista {
            max-width: 700px;
            margin: 0 auto 2.5rem;
            font-size: 1.2rem;
        }

        .clump-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 4rem;
        }

        .shingle-step {
            flex: 1;
            min-width: 280px;
            max-width: 360px;
            background: var(--bg-surface);
            padding: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: left;
            transition: transform var(--transition);
        }

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

        .mark-fleck {
            width: 48px;
            height: 48px;
            background: rgba(46, 132, 207, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .shingle-step h3 {
            color: var(--crown-color);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        /* 第二部分: Acquire (驱动管理) */
        .haven-acquire {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
            background: rgba(30, 41, 59, 0.4);
            border-radius: 24px;
        }

        .casing-detail {
            flex: 1;
            min-width: 320px;
        }

        .casing-detail h2 {
            font-size: 2.4rem;
            color: var(--crown-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .streak-raft {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .twig-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .twig-feature svg {
            color: var(--primary);
            flex-shrink: 0;
        }

        .lens-preview {
            flex: 1;
            min-width: 320px;
            background: #0f172a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            padding: 1.5rem;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        .streak-code {
            font-family: "SF Mono", Monaco, Consolas, monospace;
            font-size: 0.9rem;
            color: #38bdf8;
        }

        /* 第三部分: Closing (诊断) */
        .casing-closing {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

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

        .shingle-shingle {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            padding: 2rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
        }

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

        .spark-prime:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(46, 132, 207, 0.4);
            filter: brightness(1.1);
        }

        /* 页脚 */
        .base {
            background: #020617;
            padding: 5rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .delta-pond {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 4rem;
        }

        .depth-info {
            flex: 1;
            min-width: 250px;
        }

        .depth-info h4 {
            color: var(--crown-color);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .clump-links {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .twig-column h5 {
            color: var(--crown-color);
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
        }

        .twig-column a {
            display: block;
            color: var(--grain-color);
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }

        .twig-column a:hover {
            color: var(--primary);
        }

        .depth-grain {
            width: 100%;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 0.9rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .raft {
                gap: 1rem;
            }
            .lodge {
                padding: 4rem 1.5rem;
            }
            .haven-acquire {
                flex-direction: column;
                gap: 2rem;
            }
            .clump-links {
                gap: 2rem;
            }
        }

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