:root {
            --accent: #f5d75f;
            --bg: #ffffff;
            --rune-main: #333333;
            --rune-fade: #666666;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
            --radius: 8px;
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        }

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

        body {
            font-family: var(--font);
            line-height: 1.7;
            color: var(--rune-main);
            background-color: var(--bg);
            overflow-x: hidden;
        }

        /* 强制导航栏样式复用 */
        .scout {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .orbit {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .glyph {
            height: 32px;
        }

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

        .tier {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .bond {
            text-decoration: none;
            color: #333;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.15s ease;
            position: relative;
        }

        .bond:hover, .bond.active {
            color: #1a1a1a;
        }

        .bond.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }

        /* 主内容布局 */
        .atlas {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .prime {
            padding: 160px 24px 120px;
            background: radial-gradient(circle at 90% 10%, rgba(245, 215, 95, 0.12) 0%, transparent 60%);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .clump-prime {
            flex: 1;
            min-width: 320px;
        }

        .apex-prime {
            font-size: clamp(42px, 5vw, 64px);
            line-height: 1.1;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 24px;
            word-break: keep-all;
        }

        .rune-prime {
            font-size: 20px;
            color: var(--rune-fade);
            margin-bottom: 40px;
            max-width: 540px;
            word-break: break-word;
        }

        .glare {
            flex: 1;
            min-width: 320px;
            position: relative;
            display: flex;
            justify-content: center;
        }

        /* SVG 动效: 模拟手机与文档流转 */
        .sheath-motion {
            width: 100%;
            max-width: 480px;
            height: auto;
        }

        .motion-rect {
            animation: float 3s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .dart-primary {
            display: inline-block;
            padding: 16px 42px;
            background-color: var(--accent);
            color: #1a1a1a;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(245, 215, 95, 0.3);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

        .dart-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(245, 215, 95, 0.45);
        }

        /* 移动端黑科技板块 */
        .realm-capability {
            padding: 100px 24px;
            background-color: #fafafa;
        }

        .swath-capability {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .folio-tech {
            background: #ffffff;
            padding: 48px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
            min-width: 0;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .folio-tech:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .sigil-tech {
            width: 56px;
            height: 56px;
            background: var(--accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
        }

        .sigil-tech svg {
            width: 28px;
            height: 28px;
            fill: #1a1a1a;
        }

        .apex-tech {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1a1a1a;
        }

        .rune-tech {
            font-size: 16px;
            color: var(--rune-fade);
        }

        /* 全平台联动 */
        .atlas-proof {
            padding: 120px 24px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 80px;
        }

        .clump-proof {
            flex: 1;
            min-width: 320px;
        }

        .glare-proof {
            flex: 1.2;
            min-width: 320px;
            background: #fdfdfd;
            border-radius: 11px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .crest-overlay {
            background: var(--accent);
            padding: 8px 20px;
            color: #1a1a1a;
            font-size: 14px;
            font-weight: 700;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 24px;
        }

        .mote-flow {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            padding: 16px;
            background: #fff;
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
        }

        /* 页脚区域 */
        .jolt {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 80px 24px 40px;
        }

        .fathom {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 48px;
        }

        .anch-swath {
            min-width: 160px;
        }

        .apex-fathom {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--accent);
        }

        .bond-fathom {
            display: block;
            color: #999;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 14px;
            transition: color 0.15s ease;
        }

        .bond-fathom:hover {
            color: #fff;
        }

        .rune-jolt {
            text-align: center;
            margin-top: 40px;
            color: #666;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .prime, .atlas-proof {
                padding-top: 120px;
                text-align: center;
            }
            .clump-prime, .glare, .clump-proof, .glare-proof {
                flex: none;
                width: 100%;
            }
            .tier {
                display: none; /* 移动端简化 */
            }
            .rune-prime {
                margin-left: auto;
                margin-right: auto;
            }
        }

.orbit-scout{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

.orbit-scout .orbit-orbit{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            height: 72px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

.orbit-scout .orbit-glyph{
            display: flex;
            align-items: center;
            height: 100%;
        }

.orbit-scout .orbit-glyph img{
            height: 32px;
            width: auto;
        }

.orbit-scout .orbit-tier{
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

.orbit-scout .orbit-bond{
            text-decoration: none;
            color: #333333;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.15s ease;
            position: relative;
        }

.orbit-scout .orbit-bond:hover, .orbit-scout .orbit-bond.active{
            color: #d4a017;
        }

.orbit-scout .orbit-bond.active::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #f5d75f;
        }

@media (max-width: 768px){.orbit-scout .orbit-orbit{ padding: 0 20px; }

.orbit-scout .orbit-tier{ display: none; }}

.orbit-scout {
    background: rgb(255, 255, 255);
    background-image: none;
}

.fathom-atlas-root {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--ink);
}
.fathom-atlas-root,
.fathom-atlas-root *,
.fathom-atlas-root *::before,
.fathom-atlas-root *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.fathom-atlas-root .fathom-scout{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

.fathom-atlas-root .fathom-orbit{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            height: 72px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

.fathom-atlas-root .fathom-glyph{
            display: flex;
            align-items: center;
            height: 100%;
        }

.fathom-atlas-root .fathom-glyph img{
            height: 32px;
            width: auto;
        }

.fathom-atlas-root .fathom-tier{
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

.fathom-atlas-root .fathom-bond{
            text-decoration: none;
            color: #333333;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.15s ease;
            position: relative;
        }

.fathom-atlas-root .fathom-bond:hover, .fathom-atlas-root .fathom-bond.active{
            color: #d4a017;
        }

.fathom-atlas-root .fathom-bond.active::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #f5d75f;
        }

.fathom-atlas-root .fathom-atlas{
            margin-top: 72px;
        }

.fathom-atlas-root .fathom-prime{
            position: relative;
            padding: 120px 0 160px;
            background: radial-gradient(circle at 10% 20%, rgba(245, 215, 95, 0.15) 0%, transparent 50%);
            overflow: hidden;
        }

.fathom-atlas-root .fathom-glare{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            position: relative;
            flex-wrap: wrap;
        }

.fathom-atlas-root .fathom-clump-prime{
            flex: 1;
            min-width: 0;
            z-index: 10;
            position: relative;
        }

.fathom-atlas-root .fathom-apex-prime{
            font-size: clamp(42px, 5vw, 68px);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            color: #1a1a1a;
            white-space: normal;
            word-break: break-word;
        }

.fathom-atlas-root .fathom-rune-prime{
            font-size: 18px;
            color: #666;
            max-width: 520px;
            margin-bottom: 40px;
            word-break: break-word;
        }

.fathom-atlas-root .fathom-swath-dart{
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

.fathom-atlas-root .fathom-dart-primary{
            display: inline-block;
            padding: 16px 36px;
            background-color: #f5d75f;
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(245, 215, 95, 0.3);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

.fathom-atlas-root .fathom-dart-primary:hover{
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(245, 215, 95, 0.4);
        }

.fathom-atlas-root .fathom-sheath-prime{
            flex: 1.2;
            min-width: 0;
            position: relative;
            transform: translate(60px, 40px); 
        }

.fathom-atlas-root .fathom-sheath-prime img{
            width: 110%;
            height: auto;
            border-radius: 11px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            display: block;
        }

.fathom-atlas-root .fathom-crest-overlay{
            position: absolute;
            top: 20%;
            left: -40px;
            background: #f5d75f;
            padding: 12px 40px;
            z-index: 15;
            font-weight: 700;
            color: #1a1a1a;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            border-radius: 4px;
        }

.fathom-atlas-root .fathom-realm{
            padding: 100px 0;
            background: #ffffff;
        }

.fathom-atlas-root .fathom-realm-soft{
            background: #f9f9f9;
        }

.fathom-atlas-root .fathom-clump-standard{
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

.fathom-atlas-root .fathom-apex-sec{
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            color: #1a1a1a;
        }

.fathom-atlas-root .fathom-rune-sec{
            text-align: center;
            color: #777;
            max-width: 700px;
            margin: 0 auto 60px;
        }

.fathom-atlas-root .fathom-swath-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

.fathom-atlas-root .fathom-vign{
            background: #ffffff;
            padding: 48px 40px;
            border-radius: 11px;
            border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.15s ease;
            position: relative;
            overflow: hidden;
        }

.fathom-atlas-root .fathom-vign:hover{
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            border-color: #f5d75f;
        }

.fathom-atlas-root .fathom-sigil-box{
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #fff 0%, #f5d75f 150%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
        }

.fathom-atlas-root .fathom-sigil-box svg{
            width: 32px;
            height: 32px;
            fill: #1a1a1a;
        }

.fathom-atlas-root .fathom-apex-vign{
            font-size: 22px;
            margin-bottom: 16px;
            font-weight: 700;
        }

.fathom-atlas-root .fathom-rune-vign{
            font-size: 15px;
            color: #666;
            margin-bottom: 20px;
        }

.fathom-atlas-root .fathom-swath-split{
            display: flex;
            align-items: center;
            gap: 80px;
            flex-wrap: wrap;
        }

.fathom-atlas-root .fathom-sheath-split{
            flex: 1;
            min-width: 0;
        }

.fathom-atlas-root .fathom-sheath-split img{
            width: 100%;
            height: auto;
            border-radius: 11px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

.fathom-atlas-root .fathom-clump-split{
            flex: 1;
            min-width: 0;
        }

.fathom-atlas-root .fathom-mote-tier{
            list-style: none;
            margin-top: 30px;
        }

.fathom-atlas-root .fathom-mote-tier li{
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 20px;
            font-size: 16px;
        }

.fathom-atlas-root .fathom-sigil-mini{
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 4px;
            fill: #f5d75f;
        }

.fathom-atlas-root .fathom-realm-ai{
            background: linear-gradient(110deg, #111 0%, #222 100%);
            color: #ffffff;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

.fathom-atlas-root .fathom-realm-ai::before{
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 215, 95, 0.1) 0%, transparent 70%);
        }

.fathom-atlas-root .fathom-apex-ai{
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 24px;
            color: #f5d75f;
        }

.fathom-atlas-root .fathom-rune-ai{
            font-size: 18px;
            color: #aaa;
            max-width: 600px;
            margin-bottom: 48px;
        }

.fathom-atlas-root .fathom-dart-ghost{
            display: inline-block;
            padding: 14px 32px;
            border: 1px solid #f5d75f;
            color: #f5d75f;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.15s ease;
        }

.fathom-atlas-root .fathom-dart-ghost:hover{
            background: #f5d75f;
            color: #1a1a1a;
        }

.fathom-atlas-root .fathom-fathom{
            background: #f4f4f4;
            padding: 80px 0 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

.fathom-atlas-root .fathom-anch{
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

.fathom-atlas-root .fathom-swath-fathom{
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 40px;
        }

.fathom-atlas-root .fathom-clump-fathom{
            flex: 1;
            min-width: 200px;
        }

.fathom-atlas-root .fathom-apex-fathom{
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #1a1a1a;
        }

.fathom-atlas-root .fathom-mote-fathom{
            margin-bottom: 12px;
        }

.fathom-atlas-root .fathom-bond-fathom{
            text-decoration: none;
            color: #666;
            font-size: 14px;
            transition: color 0.15s ease;
        }

.fathom-atlas-root .fathom-bond-fathom:hover{
            color: #1a1a1a;
        }

.fathom-atlas-root .fathom-crest-bottom{
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #999;
            flex-wrap: wrap;
            gap: 20px;
        }

@media (max-width: 1024px){.fathom-atlas-root .fathom-glare{ flex-direction: column; text-align: center; }

.fathom-atlas-root .fathom-clump-prime{ margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; }

.fathom-atlas-root .fathom-sheath-prime{ transform: translate(0, 0); width: 100%; }

.fathom-atlas-root .fathom-crest-overlay{ left: 50%; transform: translateX(-50%); top: -20px; }

.fathom-atlas-root .fathom-rune-prime{ margin-left: auto; margin-right: auto; }

.fathom-atlas-root .fathom-swath-split{ flex-direction: column; }}

@media (max-width: 768px){.fathom-atlas-root .fathom-orbit{ padding: 0 20px; }

.fathom-atlas-root .fathom-tier{ display: none; }

.fathom-atlas-root .fathom-apex-prime{ font-size: 36px; }

.fathom-atlas-root .fathom-realm{ padding: 60px 0; }

.fathom-atlas-root .fathom-clump-standard{ padding: 0 24px; }

.fathom-atlas-root .fathom-swath-grid{ grid-template-columns: 1fr; }}