:root {
            --accent: #f5d75f;
            --accent-soft: rgba(245, 215, 95, 0.15);
            --dark: #1a1a1a;
            --gray: #333333;
            --light: #ffffff;
            --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;
            --transition: 0.15s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            line-height: 1.7;
            color: var(--gray);
            background-color: var(--light);
            overflow-x: hidden;
            word-break: break-word;
        }

        /* 导航区域 */
        .scout {
            position: fixed;
            top: 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;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .glyph {
            min-width: 0;
            display: flex;
            align-items: center;
        }

        .glyph img {
            height: 32px;
        }

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

        .bond {
            text-decoration: none;
            color: var(--gray);
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition);
            position: relative;
        }

        .bond:hover, .bond.active {
            color: var(--dark);
        }

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

        /* 主内容容器 */
        main {
            padding-top: 72px;
        }

        .atlas {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* 第一屏：互动转换舞台 */
        .prime {
            padding: 100px 0 120px;
            background: radial-gradient(circle at 10% 20%, var(--accent-soft) 0%, transparent 50%);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .intro {
            flex: 1;
            min-width: 320px;
            padding-right: 40px;
        }

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

        .rune-glare {
            font-size: 20px;
            color: #666;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .clump-dart {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .clic-dart {
            padding: 16px 40px;
            background-color: var(--accent);
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            border-radius: var(--radius);
            box-shadow: 0 8px 20px rgba(245, 215, 95, 0.3);
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-block;
        }

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

        .sheath-motion {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .sigil-convert {
            width: 100%;
            max-width: 500px;
            filter: drop-shadow(var(--shadow-lg));
        }

        /* 核心优势区域 */
        .capability {
            padding: 100px 0;
            background: #fcfcfc;
        }

        .crest-sole {
            text-align: center;
            margin-bottom: 80px;
        }

        .apex-atlas {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .swath-vign {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .folio-vign {
            background: var(--light);
            padding: 48px 40px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

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

        .sigil-vign {
            width: 56px;
            height: 56px;
            background: var(--accent-soft);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--dark);
        }

        .apex-vign {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--dark);
        }

        .rune-vign {
            font-size: 16px;
            color: #777;
        }

        /* 场景展示区域 */
        .realm-showcase {
            padding: 120px 0;
            background: var(--light);
        }

        .clump-mote {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 24px;
        }

        .mote-scene {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: #fff;
            padding: 40px;
            border: 1px solid rgba(0,0,0,0.06);
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
        }

        .clump-scene-rune {
            flex: 1;
            min-width: 200px;
        }

        .crest-overlay {
            display: inline-block;
            background: var(--accent);
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 700;
            border-radius: 4px;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .apex-mote {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .rune-mote {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* 页脚 */
        .fathom {
            background: #f8f8f8;
            padding: 80px 0 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

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

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

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

        .bond-fathom {
            display: block;
            text-decoration: none;
            color: #888;
            margin-bottom: 12px;
            font-size: 14px;
            transition: var(--transition);
        }

        .bond-fathom:hover {
            color: var(--dark);
        }

        .jolt-crest {
            padding-top: 30px;
            border-top: 1px solid rgba(0,0,0,0.05);
            text-align: center;
            font-size: 13px;
            color: #aaa;
        }

        @media (max-width: 768px) {
            .prime {
                padding: 60px 0 80px;
                text-align: center;
            }
            .intro {
                padding-right: 0;
                margin-bottom: 60px;
            }
            .clump-dart {
                justify-content: center;
            }
            .tier {
                display: none; /* 移动端简化 */
            }
        }

        /* 简单动画 */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .sigil-convert {
            animation: float 4s ease-in-out infinite;
        }

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