/* ==========================================================================
           视觉契约 & 变量系统 (同族基因)
           ========================================================================== */
        :root {
            --bg-base: #0b0f19;
            --bg-surface: #131b2c;
            --bg-elevated: #1a243a;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --accent: #f0af4e;
            --accent-hover: #f5c276;
            --border: #2e3c5a;
            
            --radius: 20px;
            --radius-sm: 12px;
            
            --space-sm: 1rem;
            --space-md: 2rem;
            --space-lg: 4rem;
            
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --transition: all 0.35s ease;
        }

        /* ==========================================================================
           全局重置 & 基础版式
           ========================================================================== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font);
            background-color: var(--bg-base);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        svg {
            display: block;
        }

        /* ==========================================================================
           强制 Flex/Grid 规则与版心
           ========================================================================== */
        .ream {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .sync-hull {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-lg);
            align-items: center;
        }

        .sync-hull > * {
            min-width: 0;
        }

        /* ==========================================================================
           导航栏组件 (强制复用与同族适配)
           ========================================================================== */
        .nose {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(11, 15, 25, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(46, 60, 90, 0.5);
            padding: 1rem 0;
            transition: var(--transition);
        }

        .drift {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .drift > * {
            min-width: 0;
        }

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

        .crest img {
            height: 32px;
            width: auto;
        }

        .wind-flock {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

        .wind-flock > * {
            min-width: 0;
        }

        .wind-path {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
        }

        .wind-path:hover,
        .wind-path.active {
            color: var(--text-main);
        }

        .wind-path.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background-color: var(--accent);
            border-radius: 2px;
        }

        /* ==========================================================================
           排版系统
           ========================================================================== */
        .flight-peak {
            line-height: 1.3;
            font-weight: 700;
            color: var(--text-main);
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: -0.02em;
            white-space: normal;
            margin-bottom: 1.5rem;
        }

        .soar-peak {
            line-height: 1.4;
            font-weight: 600;
            color: var(--text-main);
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            letter-spacing: -0.01em;
            white-space: normal;
            margin-bottom: 1.2rem;
        }
        
        .fold-peak {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 0.5rem;
        }

        .pulp-flow {
            color: var(--text-muted);
            font-size: 1.125rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            word-break: keep-all;
        }

        .pulp-sub {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* ==========================================================================
           按钮语法 (同族变体)
           ========================================================================== */
        .toss {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 2.5rem;
            background: var(--accent);
            color: #000;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(240, 175, 78, 0.2);
            will-change: transform;
        }

        .toss:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 175, 78, 0.3);
        }

        .dart {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.6rem 1.5rem;
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-main);
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            cursor: pointer;
        }

        .dart:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--text-muted);
        }
        
        .dart-mark {
            width: 18px;
            height: 18px;
            margin-right: 8px;
            fill: currentColor;
        }

        /* ==========================================================================
           页面内容区块
           ========================================================================== */
        /* Hero 区域 */
        .takeoff-hull {
            padding: 10rem 0 6rem;
            position: relative;
            background: radial-gradient(circle at top right, rgba(240, 175, 78, 0.05), transparent 50%);
        }

        .takeoff-pulp {
            flex: 1 1 450px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .takeoff-ink {
            flex: 1 1 500px;
            position: relative;
        }

        .takeoff-ink img {
            border-radius: var(--radius);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            border: 1px solid var(--border);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }
        
        .takeoff-ink:hover img {
            transform: perspective(1000px) rotateY(0deg) translateY(-10px);
        }

        /* Grid 矩阵区域 */
        .hangar-hull {
            padding: 6rem 0;
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .squad-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .crease {
            background: var(--bg-elevated);
            padding: 2.5rem 2rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .crease::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent);
            opacity: 0;
            transition: var(--transition);
        }

        .crease:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border-color: rgba(240, 175, 78, 0.3);
        }

        .crease:hover::before {
            opacity: 1;
        }

        .crease-mark {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .crease-mark svg {
            width: 28px;
            height: 28px;
            fill: var(--text-main);
        }

        .crease-flap {
            margin-top: auto;
            padding-top: 2rem;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .crease-flap > * {
            min-width: 0;
        }

        /* 详情结构区域 */
        .airspace-hull {
            padding: 8rem 0;
        }

        .airspace-ink {
            flex: 1 1 450px;
            position: relative;
        }

        .airspace-ink img {
            border-radius: var(--radius);
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            border: 1px solid var(--border);
        }

        .airspace-pulp {
            flex: 1 1 400px;
        }

        .ply-squad {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .ply {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .ply-mark {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            fill: var(--accent);
            margin-top: 3px;
        }

        .ply-pulp h3 {
            font-size: 1.1rem;
            color: var(--text-main);
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .ply-pulp p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ==========================================================================
           页脚区域
           ========================================================================== */
        .tail {
            background-color: var(--bg-base);
            border-top: 1px solid var(--border);
            padding: 4rem 0 2rem;
        }

        .ground {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 2rem;
        }
        
        .ground > * {
            min-width: 0;
        }

        .ground-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: 1px;
        }

        .ground-flock {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .ground-flock > * {
            min-width: 0;
        }

        .ground-path {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .ground-path:hover {
            color: var(--accent);
        }

        .ground-pulp {
            text-align: center;
            color: rgba(148, 163, 184, 0.6);
            font-size: 0.85rem;
        }

        /* ==========================================================================
           响应式断点
           ========================================================================== */
        @media (max-width: 1024px) {
            .takeoff-ink img {
                transform: none;
            }
            .takeoff-ink:hover img {
                transform: translateY(-5px);
            }
        }

        @media (max-width: 768px) {
            .flight-peak {
                font-size: 2.2rem;
            }
            .soar-peak {
                font-size: 1.6rem;
            }
            .takeoff-hull {
                padding: 7rem 0 4rem;
            }
            .airspace-hull {
                padding: 4rem 0;
            }
            .sync-hull {
                flex-direction: column;
                gap: 3rem;
            }
            .wind-flock {
                display: none; /* 移动端简化，或者可通过JS切换，此处遵循纯样式兜底 */
            }
            .squad-grid {
                grid-template-columns: 1fr;
            }
            .airspace-ink {
                order: -1; /* 图片在移动端靠前 */
            }
        }

.drift-nose {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
}
.drift-nose,
.drift-nose *,
.drift-nose *::before,
.drift-nose *::after {
    box-sizing: border-box;
}

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

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

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

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

.drift-nose a.drift-wind-path {
    --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;
}

.drift-nose a.drift-wind-path,
.drift-nose a.drift-wind-path:hover,
.drift-nose a.drift-wind-path:focus,
.drift-nose a.drift-wind-path:active,
.drift-nose a.drift-wind-path.active,
.drift-nose a.drift-wind-path[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);
}

.drift-nose{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(11, 15, 25, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #2e3c5a;
        }

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

.drift-nose .drift-drift > *{ min-width: 0; }

.drift-nose .drift-crest img{ height: 32px; width: auto; object-fit: contain; }

.drift-nose .drift-wind-flock{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.drift-nose .drift-wind-flock > *{ min-width: 0; }

.drift-nose .drift-wind-path{
            color: #94a3b8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            position: relative;
        }

.drift-nose .drift-wind-path:hover, .drift-nose .drift-wind-path.active{ color: #f0af4e; }

.drift-nose .drift-wind-path.active::after{
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 2px;
            background: #f0af4e;
            border-radius: 2px;
        }

@media (max-width: 768px){.drift-nose .drift-wind-flock{ gap: 1rem; font-size: 0.9rem; }}

.drift-nose {
    background: rgb(11, 15, 25);
    background-image: none;
}

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

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

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

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

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

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

.land-land .land-wind-path{
            color: #94a3b8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            position: relative;
        }

.land-land .land-wind-path:hover, .land-land .land-wind-path.active{ color: #f0af4e; }

.land-land .land-wind-path.active::after{
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 2px;
            background: #f0af4e;
            border-radius: 2px;
        }

.land-land{
            background: #131b2c;
            border-top: 1px solid #2e3c5a;
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
        }

.land-land .land-ground-tail{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #2e3c5a;
            color: #94a3b8;
            font-size: 0.9rem;
        }

.land-land .land-ground-tail > *{ min-width: 0; }

.land-land .land-tail-brand{ font-size: 1.2rem; font-weight: 700; color: #f8fafc; }

@media (max-width: 768px){.land-land .land-ground-tail{ flex-direction: column; text-align: center; justify-content: center; }}