/* ==========================================================================
           1. 变量与基础重置 (Variables & Base)
           ========================================================================== */
        :root {
            /* 品牌核心色彩 - 暖调活力粉红 */
            --color-primary: #ef488b;
            --color-primary-hover: #d83a77;
            --color-primary-light: #fdf0f5;
            
            /* 背景与表面层 */
            --color-bg: #f8f9fb;
            --color-surface: #ffffff;
            --color-surface-raised: #fbfbfe;
            
            /* 墨水色彩 (文本) */
            --ink-main: #0f172a;
            --ink-sub: #475569;
            --ink-muted: #94a3b8;
            --ink-inverse: #ffffff;
            
            /* 基因参数：圆角、阴影、过渡 */
            --radius-sm: 12px;
            --radius-md: 19px;
            --radius-lg: 25px;
            
            --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
            --shadow-md: 0 12px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(239, 72, 139, 0.08);
            --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.12), 0 12px 24px -8px rgba(239, 72, 139, 0.15);
            
            --transition: 0.35s ease;
            
            /* 布局版心 */
            --max-w: 1280px;
        }

        /* 强制重置与防溢出 */
        *, *::before, *::after {
            box-sizing: border-box;
            min-width: 0; /* 强制要求：防止flex子项溢出 */
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--color-bg);
            color: var(--ink-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            /* 强制要求：文本换行 */
            word-break: break-word;
            overflow-wrap: break-word;
        }

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

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

        /* ==========================================================================
           2. 核心布局工具 (Layout Utilities)
           ========================================================================== */
        /* 所有充当容器的元素强制使用 Flex/Wrap */
        .skin-global,
        .nose,
        .glide,
        .flock,
        .hull,
        .soar,
        .soar-ink-band,
        .soar-visual-band,
        .clan-actions,
        .realm,
        .realm-inner,
        .realm-ink,
        .clan-features,
        .node-feature,
        .pod,
        .pod-inner,
        .cloud,
        .cloud-inner,
        .clan-grid,
        .fold,
        .tail,
        .tail-inner {
            display: flex;
            flex-wrap: wrap;
        }

        /* 基础结构约束 */
        .skin-global {
            width: 100%;
            flex-direction: column;
            min-height: 100vh;
        }

        .hull {
            width: 100%;
            flex-direction: column;
            flex-grow: 1;
        }

        /* ==========================================================================
           3. 导航区域 (Nose / Glide)
           ========================================================================== */
        .nose {
            width: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
            justify-content: center;
        }

        .glide {
            width: 100%;
            max-width: var(--max-w);
            padding: 16px 24px;
            align-items: center;
            justify-content: space-between;
        }

        .mark {
            flex: 0 0 auto;
            width: 180px; /* 控制Logo大小 */
        }

        .flock {
            flex: 1 1 auto;
            justify-content: flex-end;
            align-items: center;
            gap: 8px;
        }

        .wire {
            padding: 8px 16px;
            font-weight: 500;
            color: var(--ink-sub);
            border-radius: var(--radius-sm);
        }

        .wire:hover,
        .wire:focus {
            color: var(--color-primary);
            background-color: var(--color-primary-light);
            transform: translateY(-1px);
        }

        .wire.active {
            color: var(--color-primary);
            background-color: var(--color-primary-light);
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .flock {
                width: 100%;
                justify-content: flex-start;
                margin-top: 16px;
                padding-top: 16px;
                border-top: 1px solid rgba(15, 23, 42, 0.05);
                overflow-x: auto;
                flex-wrap: nowrap; /* 移动端导航允许横向滚动 */
            }
            .wire {
                white-space: nowrap;
            }
        }

        /* ==========================================================================
           4. 展示区域 (Soar - Hero Vertical Stack)
           ========================================================================== */
        .soar {
            width: 100%;
            padding: 80px 24px 0;
            background: radial-gradient(circle at top center, #ffffff 0%, var(--color-bg) 100%);
            flex-direction: column;
            align-items: center;
        }

        .soar-ink-band {
            width: 100%;
            max-width: 900px; /* 控制文本行长 */
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 60px;
        }

        .apex-major {
            width: 100%;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            color: var(--ink-main);
            margin-bottom: 24px;
            white-space: normal; /* 强制规范 */
        }

        .apex-major span {
            color: var(--color-primary);
        }

        .ink-lead {
            width: 100%;
            max-width: 720px;
            font-size: clamp(1.125rem, 2vw, 1.35rem);
            color: var(--ink-sub);
            margin-bottom: 40px;
            line-height: 1.8;
            word-break: keep-all; /* 中文词组保持 */
        }

        .clan-actions {
            width: 100%;
            justify-content: center;
            gap: 16px;
        }

        .dart {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: var(--radius-lg);
            cursor: pointer;
            gap: 10px;
        }

        .dart-primary {
            background-color: var(--color-primary);
            color: var(--ink-inverse);
            box-shadow: 0 8px 16px -4px rgba(239, 72, 139, 0.4);
        }

        .dart-primary:hover,
        .dart-primary:focus {
            background-color: var(--color-primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 24px -4px rgba(239, 72, 139, 0.5);
        }

        .dart-secondary {
            background-color: var(--color-surface);
            color: var(--ink-main);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(15, 23, 42, 0.05);
        }

        .dart-secondary:hover,
        .dart-secondary:focus {
            background-color: var(--color-surface-raised);
            color: var(--color-primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* 强制蓝图：图片/视觉占满容器宽度，上下排列 */
        .soar-visual-band {
            width: 100%;
            max-width: var(--max-w);
            justify-content: center;
            margin-bottom: -60px; /* 制造与下个区块的层叠感 */
            z-index: 10;
        }

        .soar-visual-band svg {
            width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            background: var(--color-surface);
        }

        @media (max-width: 768px) {
            .soar { padding-top: 48px; }
            .clan-actions { flex-direction: column; }
            .dart { width: 100%; }
        }

        /* ==========================================================================
           5. 特性区块 (Realm - Capabilities)
           ========================================================================== */
        .realm {
            width: 100%;
            padding: 140px 24px 80px;
            background-color: var(--color-surface);
            justify-content: center;
            position: relative;
        }

        .realm::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(239, 72, 139, 0.2), transparent);
        }

        .realm-inner {
            width: 100%;
            max-width: var(--max-w);
            align-items: center;
            gap: 60px;
        }

        .realm-ink {
            flex: 1 1 400px;
            flex-direction: column;
        }

        .apex {
            width: 100%;
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            color: var(--ink-main);
            margin-bottom: 20px;
            line-height: 1.2;
            white-space: normal;
        }

        .ink {
            width: 100%;
            font-size: 1.125rem;
            color: var(--ink-sub);
            margin-bottom: 40px;
        }

        .clan-features {
            width: 100%;
            flex-direction: column;
            gap: 24px;
        }

        .node-feature {
            width: 100%;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: var(--color-surface-raised);
            border-radius: var(--radius-md);
            border: 1px solid rgba(15, 23, 42, 0.03);
            transition: all var(--transition);
        }

        .node-feature:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-sm);
            border-color: rgba(239, 72, 139, 0.2);
        }

        .glyph-skin {
            flex: 0 0 auto;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
        }

        .node-ink {
            flex: 1 1 0;
        }

        .apex-minor {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--ink-main);
            margin-bottom: 4px;
        }

        .ink-micro {
            font-size: 0.95rem;
            color: var(--ink-sub);
        }

        .realm-lens {
            flex: 1 1 400px;
            justify-content: center;
        }

        .realm-lens img {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform var(--transition);
        }

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

        /* ==========================================================================
           6. 深度叙事区块 (Pod - Ecosystem Buffer)
           ========================================================================== */
        .pod {
            width: 100%;
            padding: 100px 24px;
            background-color: var(--color-bg);
            justify-content: center;
        }

        .pod-inner {
            width: 100%;
            max-width: 900px; /* 适合长阅读的宽度 */
            flex-direction: column;
            gap: 48px;
        }

        .pod-hull {
            width: 100%;
            background: var(--color-surface);
            padding: 48px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(15, 23, 42, 0.04);
        }

        .pod-hull h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--ink-main);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .pod-hull h3::before {
            content: '';
            display: block;
            width: 6px;
            height: 24px;
            background: var(--color-primary);
            border-radius: 4px;
        }

        .pod-hull p {
            font-size: 1.05rem;
            color: var(--ink-sub);
            margin-bottom: 20px;
            line-height: 1.8;
            word-break: keep-all;
        }

        .pod-hull p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .pod-hull { padding: 32px 20px; }
        }

        /* ==========================================================================
           7. 探索网格导航 (Cloud - Grid Nav)
           ========================================================================== */
        .cloud {
            width: 100%;
            padding: 80px 24px 120px;
            background-color: var(--ink-main);
            color: var(--ink-inverse);
            justify-content: center;
        }

        .cloud-inner {
            width: 100%;
            max-width: var(--max-w);
            flex-direction: column;
            align-items: center;
        }

        .cloud-nose {
            width: 100%;
            max-width: 600px;
            text-align: center;
            margin-bottom: 60px;
        }

        .cloud-nose .apex {
            color: var(--ink-inverse);
        }

        .cloud-nose .ink {
            color: var(--ink-muted);
        }

        .clan-grid {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .fold {
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            flex-direction: column;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .fold::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--color-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition);
        }

        .fold:hover,
        .fold:focus-within {
            background-color: rgba(255, 255, 255, 0.06);
            transform: translateY(-8px);
            border-color: rgba(239, 72, 139, 0.3);
        }

        .fold:hover::before,
        .fold:focus-within::before {
            transform: scaleX(1);
        }

        .fold .glyph-skin {
            background: rgba(239, 72, 139, 0.15);
            margin-bottom: 24px;
        }

        .fold .apex-minor {
            color: var(--ink-inverse);
            font-size: 1.35rem;
            margin-bottom: 12px;
        }

        .fold .ink-micro {
            color: var(--ink-muted);
            font-size: 1.05rem;
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .fold-spark {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--color-primary);
            font-weight: 600;
            font-size: 1.05rem;
        }

        .fold-spark svg {
            transition: transform var(--transition);
        }

        .fold:hover .fold-spark svg {
            transform: translateX(4px);
        }

        /* ==========================================================================
           8. 页脚区域 (Tail)
           ========================================================================== */
        .tail {
            width: 100%;
            padding: 48px 24px;
            background-color: #080b14;
            color: var(--ink-muted);
            justify-content: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .tail-inner {
            width: 100%;
            max-width: var(--max-w);
            justify-content: space-between;
            align-items: center;
        }

        .tail-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--ink-inverse);
            letter-spacing: -0.02em;
        }

        .tail-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .tail-links a:hover {
            color: var(--color-primary);
        }

        @media (max-width: 768px) {
            .tail-inner { flex-direction: column; gap: 24px; text-align: center; }
            .tail-links { justify-content: center; }
        }

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

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

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

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

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

.glide-nose a.glide-wire {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

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

.glide-nose, .glide-nose .glide-glide, .glide-nose .glide-flock{
            display: flex;
            flex-wrap: wrap;
        }

.glide-nose{
            width: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
            justify-content: center;
        }

.glide-nose .glide-glide{
            width: 100%;
            max-width: 1280px;
            padding: 16px 24px;
            align-items: center;
            justify-content: space-between;
        }

.glide-nose .glide-mark{
            flex: 0 0 auto;
            width: 180px; 
        }

.glide-nose .glide-flock{
            flex: 1 1 auto;
            justify-content: flex-end;
            align-items: center;
            gap: 8px;
        }

.glide-nose .glide-wire{
            padding: 8px 16px;
            font-weight: 500;
            color: #475569;
            border-radius: 12px;
        }

.glide-nose .glide-wire:hover, .glide-nose .glide-wire:focus{
            color: #ef488b;
            background-color: #fdf0f5;
            transform: translateY(-1px);
        }

.glide-nose .glide-wire.active{
            color: #ef488b;
            background-color: #fdf0f5;
            font-weight: 600;
        }

@media (max-width: 768px){.glide-nose .glide-flock{
                width: 100%;
                justify-content: flex-start;
                margin-top: 16px;
                padding-top: 16px;
                border-top: 1px solid rgba(15, 23, 42, 0.05);
                overflow-x: auto;
                flex-wrap: nowrap; 
            }

.glide-nose .glide-wire{
                white-space: nowrap;
            }}

.glide-nose {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.anchor-skin-global, .anchor-skin-global .anchor-nose, .anchor-skin-global .anchor-glide, .anchor-skin-global .anchor-flock, .anchor-skin-global .anchor-hull, .anchor-skin-global .anchor-soar, .anchor-skin-global .anchor-soar-ink-band, .anchor-skin-global .anchor-soar-visual-band, .anchor-skin-global .anchor-clan-actions, .anchor-skin-global .anchor-realm, .anchor-skin-global .anchor-realm-inner, .anchor-skin-global .anchor-realm-ink, .anchor-skin-global .anchor-clan-features, .anchor-skin-global .anchor-node-feature, .anchor-skin-global .anchor-pod, .anchor-skin-global .anchor-pod-inner, .anchor-skin-global .anchor-cloud, .anchor-skin-global .anchor-cloud-inner, .anchor-skin-global .anchor-clan-grid, .anchor-skin-global .anchor-fold, .anchor-skin-global .anchor-tail, .anchor-skin-global .anchor-tail-inner{
            display: flex;
            flex-wrap: wrap;
        }

.anchor-skin-global{
            width: 100%;
            flex-direction: column;
            min-height: 100vh;
        }

.anchor-skin-global .anchor-hull{
            width: 100%;
            flex-direction: column;
            flex-grow: 1;
        }

.anchor-skin-global .anchor-nose{
            width: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
            justify-content: center;
        }

.anchor-skin-global .anchor-glide{
            width: 100%;
            max-width: 1280px;
            padding: 16px 24px;
            align-items: center;
            justify-content: space-between;
        }

.anchor-skin-global .anchor-mark{
            flex: 0 0 auto;
            width: 180px; 
        }

.anchor-skin-global .anchor-flock{
            flex: 1 1 auto;
            justify-content: flex-end;
            align-items: center;
            gap: 8px;
        }

.anchor-skin-global .anchor-wire{
            padding: 8px 16px;
            font-weight: 500;
            color: #475569;
            border-radius: 12px;
        }

.anchor-skin-global .anchor-wire:hover, .anchor-skin-global .anchor-wire:focus{
            color: #ef488b;
            background-color: #fdf0f5;
            transform: translateY(-1px);
        }

.anchor-skin-global .anchor-wire.active{
            color: #ef488b;
            background-color: #fdf0f5;
            font-weight: 600;
        }

@media (max-width: 768px){.anchor-skin-global .anchor-flock{
                width: 100%;
                justify-content: flex-start;
                margin-top: 16px;
                padding-top: 16px;
                border-top: 1px solid rgba(15, 23, 42, 0.05);
                overflow-x: auto;
                flex-wrap: nowrap; 
            }

.anchor-skin-global .anchor-wire{
                white-space: nowrap;
            }}

.anchor-skin-global .anchor-soar{
            width: 100%;
            padding: 80px 24px 0;
            background: radial-gradient(circle at top center, #ffffff 0%, #f8f9fb 100%);
            flex-direction: column;
            align-items: center;
        }

.anchor-skin-global .anchor-soar-ink-band{
            width: 100%;
            max-width: 900px; 
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 60px;
        }

.anchor-skin-global .anchor-apex-major{
            width: 100%;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            color: #0f172a;
            margin-bottom: 24px;
            white-space: normal; 
        }

.anchor-skin-global .anchor-apex-major span{
            color: #ef488b;
        }

.anchor-skin-global .anchor-ink-lead{
            width: 100%;
            max-width: 720px;
            font-size: clamp(1.125rem, 2vw, 1.35rem);
            color: #475569;
            margin-bottom: 40px;
            line-height: 1.8;
            word-break: keep-all; 
        }

.anchor-skin-global .anchor-clan-actions{
            width: 100%;
            justify-content: center;
            gap: 16px;
        }

.anchor-skin-global .anchor-dart{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 25px;
            cursor: pointer;
            gap: 10px;
        }

.anchor-skin-global .anchor-dart-primary{
            background-color: #ef488b;
            color: #ffffff;
            box-shadow: 0 8px 16px -4px rgba(239, 72, 139, 0.4);
        }

.anchor-skin-global .anchor-dart-primary:hover, .anchor-skin-global .anchor-dart-primary:focus{
            background-color: #d83a77;
            transform: translateY(-3px);
            box-shadow: 0 12px 24px -4px rgba(239, 72, 139, 0.5);
        }

.anchor-skin-global .anchor-dart-secondary{
            background-color: #ffffff;
            color: #0f172a;
            box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
            border: 1px solid rgba(15, 23, 42, 0.05);
        }

.anchor-skin-global .anchor-dart-secondary:hover, .anchor-skin-global .anchor-dart-secondary:focus{
            background-color: #fbfbfe;
            color: #ef488b;
            transform: translateY(-3px);
            box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(239, 72, 139, 0.08);
        }

.anchor-skin-global .anchor-soar-visual-band{
            width: 100%;
            max-width: 1280px;
            justify-content: center;
            margin-bottom: -60px; 
            z-index: 10;
        }

.anchor-skin-global .anchor-soar-visual-band svg{
            width: 100%;
            height: auto;
            border-radius: 25px;
            box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.12), 0 12px 24px -8px rgba(239, 72, 139, 0.15);
            background: #ffffff;
        }

@media (max-width: 768px){.anchor-skin-global .anchor-soar{ padding-top: 48px; }

.anchor-skin-global .anchor-clan-actions{ flex-direction: column; }

.anchor-skin-global .anchor-dart{ width: 100%; }}

.anchor-skin-global .anchor-realm{
            width: 100%;
            padding: 140px 24px 80px;
            background-color: #ffffff;
            justify-content: center;
            position: relative;
        }

.anchor-skin-global .anchor-realm::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(239, 72, 139, 0.2), transparent);
        }

.anchor-skin-global .anchor-realm-inner{
            width: 100%;
            max-width: 1280px;
            align-items: center;
            gap: 60px;
        }

.anchor-skin-global .anchor-realm-ink{
            flex: 1 1 400px;
            flex-direction: column;
        }

.anchor-skin-global .anchor-apex{
            width: 100%;
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 20px;
            line-height: 1.2;
            white-space: normal;
        }

.anchor-skin-global .anchor-ink{
            width: 100%;
            font-size: 1.125rem;
            color: #475569;
            margin-bottom: 40px;
        }

.anchor-skin-global .anchor-clan-features{
            width: 100%;
            flex-direction: column;
            gap: 24px;
        }

.anchor-skin-global .anchor-node-feature{
            width: 100%;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: #fbfbfe;
            border-radius: 19px;
            border: 1px solid rgba(15, 23, 42, 0.03);
            transition: all 0.35s ease;
        }

.anchor-skin-global .anchor-node-feature:hover{
            transform: translateX(8px);
            box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
            border-color: rgba(239, 72, 139, 0.2);
        }

.anchor-skin-global .anchor-glyph-skin{
            flex: 0 0 auto;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: #fdf0f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ef488b;
        }

.anchor-skin-global .anchor-node-ink{
            flex: 1 1 0;
        }

.anchor-skin-global .anchor-apex-minor{
            font-size: 1.125rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 4px;
        }

.anchor-skin-global .anchor-ink-micro{
            font-size: 0.95rem;
            color: #475569;
        }

.anchor-skin-global .anchor-realm-lens{
            flex: 1 1 400px;
            justify-content: center;
        }

.anchor-skin-global .anchor-realm-lens img{
            width: 100%;
            border-radius: 25px;
            box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.12), 0 12px 24px -8px rgba(239, 72, 139, 0.15);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.35s ease;
        }

.anchor-skin-global .anchor-realm-lens:hover img{
            transform: perspective(1000px) rotateY(0deg) scale(1.02);
        }

.anchor-skin-global .anchor-pod{
            width: 100%;
            padding: 100px 24px;
            background-color: #f8f9fb;
            justify-content: center;
        }

.anchor-skin-global .anchor-pod-inner{
            width: 100%;
            max-width: 900px; 
            flex-direction: column;
            gap: 48px;
        }

.anchor-skin-global .anchor-pod-hull{
            width: 100%;
            background: #ffffff;
            padding: 48px;
            border-radius: 25px;
            box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
            border: 1px solid rgba(15, 23, 42, 0.04);
        }

.anchor-skin-global .anchor-pod-hull h3{
            font-size: 1.75rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

.anchor-skin-global .anchor-pod-hull h3::before{
            content: '';
            display: block;
            width: 6px;
            height: 24px;
            background: #ef488b;
            border-radius: 4px;
        }

.anchor-skin-global .anchor-pod-hull p{
            font-size: 1.05rem;
            color: #475569;
            margin-bottom: 20px;
            line-height: 1.8;
            word-break: keep-all;
        }

.anchor-skin-global .anchor-pod-hull p:last-child{
            margin-bottom: 0;
        }

@media (max-width: 768px){.anchor-skin-global .anchor-pod-hull{ padding: 32px 20px; }}

.anchor-skin-global .anchor-cloud{
            width: 100%;
            padding: 80px 24px 120px;
            background-color: #0f172a;
            color: #ffffff;
            justify-content: center;
        }

.anchor-skin-global .anchor-cloud-inner{
            width: 100%;
            max-width: 1280px;
            flex-direction: column;
            align-items: center;
        }

.anchor-skin-global .anchor-cloud-nose{
            width: 100%;
            max-width: 600px;
            text-align: center;
            margin-bottom: 60px;
        }

.anchor-skin-global .anchor-cloud-nose .anchor-apex{
            color: #ffffff;
        }

.anchor-skin-global .anchor-cloud-nose .anchor-ink{
            color: #94a3b8;
        }

.anchor-skin-global .anchor-clan-grid{
            width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

.anchor-skin-global .anchor-fold{
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 25px;
            padding: 40px 32px;
            flex-direction: column;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

.anchor-skin-global .anchor-fold::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #ef488b;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

.anchor-skin-global .anchor-fold:hover, .anchor-skin-global .anchor-fold:focus-within{
            background-color: rgba(255, 255, 255, 0.06);
            transform: translateY(-8px);
            border-color: rgba(239, 72, 139, 0.3);
        }

.anchor-skin-global .anchor-fold:hover::before, .anchor-skin-global .anchor-fold:focus-within::before{
            transform: scaleX(1);
        }

.anchor-skin-global .anchor-fold .anchor-glyph-skin{
            background: rgba(239, 72, 139, 0.15);
            margin-bottom: 24px;
        }

.anchor-skin-global .anchor-fold .anchor-apex-minor{
            color: #ffffff;
            font-size: 1.35rem;
            margin-bottom: 12px;
        }

.anchor-skin-global .anchor-fold .anchor-ink-micro{
            color: #94a3b8;
            font-size: 1.05rem;
            margin-bottom: 32px;
            flex-grow: 1;
        }

.anchor-skin-global .anchor-fold-spark{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ef488b;
            font-weight: 600;
            font-size: 1.05rem;
        }

.anchor-skin-global .anchor-fold-spark svg{
            transition: transform 0.35s ease;
        }

.anchor-skin-global .anchor-fold:hover .anchor-fold-spark svg{
            transform: translateX(4px);
        }

.anchor-skin-global .anchor-tail{
            width: 100%;
            padding: 48px 24px;
            background-color: #080b14;
            color: #94a3b8;
            justify-content: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

.anchor-skin-global .anchor-tail-inner{
            width: 100%;
            max-width: 1280px;
            justify-content: space-between;
            align-items: center;
        }

.anchor-skin-global .anchor-tail-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

.anchor-skin-global .anchor-tail-links{
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

.anchor-skin-global .anchor-tail-links a:hover{
            color: #ef488b;
        }

@media (max-width: 768px){.anchor-skin-global .anchor-tail-inner{ flex-direction: column; gap: 24px; text-align: center; }

.anchor-skin-global .anchor-tail-links{ justify-content: center; }}