:root {
    --color-primary: #5f72de;
    --color-primary-dark: #4658b5;
    --color-primary-light: #e6ebfc;
    --color-text-main: #1c1e21;
    --color-text-muted: #606770;
    --color-bg-base: #f8f9fa;
    --color-bg-surface: #ffffff;
    --color-accent: #00d2ff;
    --radius-soft: 22px;
    --radius-pill: 50px;
    --shadow-sm: 0 8px 24px rgba(0,0,0,0.04);
    --shadow-md: 0 16px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.12);
    --transition-base: 0.15s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    line-height: 1.65;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    overflow-wrap: break-word;
}

.sync-flex {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
}

.apex-huge {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    white-space: normal;
    margin: 0 0 1.5rem 0;
    color: var(--color-text-main);
}

.apex-large {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: normal;
    margin: 0 0 1.2rem 0;
}

.apex-medium {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    white-space: normal;
    margin: 0 0 0.8rem 0;
}

.tale-lead {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin: 0 0 2rem 0;
    line-height: 1.7;
    word-break: keep-all;
}

.tale-base {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.65;
    word-break: keep-all;
}

.ping-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 20px rgba(95, 114, 222, 0.3);
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
    min-width: 0;
    border: none;
    cursor: pointer;
}

.ping-primary:hover, .ping-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(95, 114, 222, 0.4);
    background: var(--color-primary-dark);
    outline: none;
}

/* 导航栏样式复用 */
.radar-pod {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(248, 249, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

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

.fleet {
    gap: 2.5rem;
    align-items: center;
}

.radar-node {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-base);
    min-width: 0;
    position: relative;
}

.radar-node:hover, .radar-node:focus {
    color: var(--color-text-main);
    outline: none;
}

.radar-node.active {
    color: var(--color-primary);
}

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

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

/* 首屏区块 (Acquire - Hero) */
.nimbus-pod {
    position: relative;
    padding: 120px 2rem;
    overflow: hidden;
    background-color: var(--color-bg-base);
}

.nimbus-pod::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(110deg, transparent 45%, var(--color-primary-light) 45.1%);
    z-index: 0;
    pointer-events: none;
}

.nimbus-hub {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.sync-half {
    flex: 1 1 45%;
    min-width: 0;
}

.glyph-surface {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 25px 40px rgba(95, 114, 222, 0.15));
    transition: transform 0.5s ease;
}

.glyph-surface:hover {
    transform: scale(1.02) translateY(-10px);
}

/* 步骤区块 (Steps - Aside) */
.vista-pod {
    padding: 100px 2rem;
    background-color: var(--color-bg-surface);
}

.vista-hub {
    max-width: 1200px;
    margin: 0 auto;
}

.vista-peak {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.sync-mesh {
    gap: 2rem;
    align-items: stretch;
}

.fold-pod {
    flex: 1 1 320px;
    min-width: 0;
    background: var(--color-bg-base);
    border-radius: var(--radius-soft);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.fold-pod::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.fold-pod:hover::before {
    opacity: 1;
}

.glyph-pip {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* 证明区块 (Proof - Article) */
.soar-pod {
    padding: 100px 2rem;
    background-color: var(--color-bg-base);
    position: relative;
}

.soar-hub {
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 5rem;
}

.lens-pod {
    flex: 1 1 50%;
    min-width: 0;
    border-radius: var(--radius-soft);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--color-bg-surface);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.4s ease;
}

.lens-pod:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

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

/* 页脚区块 (Footer) */
.anchor-pod {
    background-color: #111316;
    color: #a0aab8;
    padding: 5rem 2rem 3rem;
}

.anchor-hub {
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
    gap: 3rem;
}

.anchor-root {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin: 0 0 1rem 0;
}

.anchor-tale {
    font-size: 0.95rem;
    max-width: 400px;
    line-height: 1.6;
}

.lane-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.anchor-bottom {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 0.85rem;
}

/* 响应式断点 */
@media (max-width: 1024px) {
    .nimbus-pod::before {
        background: linear-gradient(140deg, transparent 55%, var(--color-primary-light) 55.1%);
    }
}

@media (max-width: 768px) {
    .fleet {
        gap: 1.2rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .fleet::-webkit-scrollbar {
        display: none;
    }
    
    .radar-hub {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .nimbus-pod {
        padding: 60px 1.5rem;
    }
    
    .nimbus-pod::before {
        background: linear-gradient(170deg, transparent 65%, var(--color-primary-light) 65.1%);
    }
    
    .nimbus-hub, .soar-hub {
        flex-direction: column;
        gap: 3rem;
    }
    
    .apex-huge {
        font-size: 2.2rem;
    }
    
    .apex-large {
        font-size: 1.8rem;
    }
    
    .lens-pod {
        transform: none;
    }
    
    .lens-pod:hover {
        transform: scale(1.02);
    }
    
    .vista-pod, .soar-pod {
        padding: 60px 1.5rem;
    }
    
    .anchor-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.radar-radar-pod {
    font-family: var(--font-sans);
    line-height: 1.65;
    color: var(--color-text-main);
}
.radar-radar-pod,
.radar-radar-pod *,
.radar-radar-pod *::before,
.radar-radar-pod *::after {
    box-sizing: border-box;
}

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

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

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

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

.radar-radar-pod a.radar-radar-node {
    --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;
}

.radar-radar-pod a.radar-radar-node,
.radar-radar-pod a.radar-radar-node:hover,
.radar-radar-pod a.radar-radar-node:focus,
.radar-radar-pod a.radar-radar-node:active,
.radar-radar-pod a.radar-radar-node.active,
.radar-radar-pod a.radar-radar-node[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);
}

.radar-radar-pod .radar-sync-flex{
            display: flex;
            flex-wrap: wrap;
        }

.radar-radar-pod .radar-sync-flex > *{
            min-width: 0;
        }

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

.radar-radar-pod .radar-radar-hub{
            max-width: 1320px;
            margin: 0 auto;
            padding: 1rem 5%;
            justify-content: space-between;
            align-items: center;
        }

.radar-radar-pod .radar-crest img{
            height: 36px;
            width: auto;
            display: block;
        }

.radar-radar-pod .radar-fleet{
            gap: 2rem;
            align-items: center;
        }

.radar-radar-pod .radar-radar-node{
            font-size: 0.95rem;
            font-weight: 500;
            color: #1c1e21;
            transition: all 0.15s ease;
            position: relative;
            padding: 0.5rem 0;
        }

.radar-radar-pod .radar-radar-node::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #5f72de;
            transition: all 0.15s ease;
        }

.radar-radar-pod .radar-radar-node:hover{
            color: #5f72de;
        }

.radar-radar-pod .radar-radar-node:hover::after, .radar-radar-pod .radar-radar-node.active::after{
            width: 100%;
        }

.radar-radar-pod .radar-radar-node.active{
            color: #5f72de;
        }

@media (max-width: 768px){.radar-radar-pod .radar-fleet{
                display: none; 
            }}

.radar-radar-pod {
    background: rgb(255, 255, 255);
    background-image: none;
}

.anchor-anchor-bottom {
    font-family: var(--font-sans);
    line-height: 1.65;
    color: var(--color-text-main);
}
.anchor-anchor-bottom,
.anchor-anchor-bottom *,
.anchor-anchor-bottom *::before,
.anchor-anchor-bottom *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-anchor-bottom .anchor-sync-flex{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-anchor-bottom .anchor-sync-flex > *{
            min-width: 0;
        }

.anchor-anchor-bottom{
            background: #111424;
            color: rgba(255,255,255,0.7);
            padding: 4rem 5% 2rem;
        }

.anchor-anchor-bottom .anchor-wake-inner{
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
        }

.anchor-anchor-bottom .anchor-brand-tale{
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.02em;
        }

.anchor-anchor-bottom .anchor-wake-nodes{
            gap: 1.5rem;
        }

.anchor-anchor-bottom .anchor-wake-nodes a{
            transition: all 0.15s ease;
        }

.anchor-anchor-bottom .anchor-wake-nodes a:hover{
            color: #fff;
        }

@media (max-width: 768px){.anchor-anchor-bottom .anchor-wake-inner{
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }}