/* CSS Variables - 继承首页视觉家族 */
        :root {
            --color-primary: #ef488b;
            --color-primary-hover: #d83a77;
            --color-primary-light: #fdf0f5;
            --color-bg: #f8f9fb;
            --color-surface: #ffffff;
            --color-surface-raised: #fbfbfe;
            --color-text-main: #0f172a;
            --color-text-muted: #475569;
            --color-border: rgba(15, 23, 42, 0.06);
            --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 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
            --shadow-primary: 0 8px 16px -4px rgba(239, 72, 139, 0.4);
            --transition: 0.35s ease;
            --width-max: 1200px;
        }

        /* Reset & Base Constraints */
        *, *::before, *::after {
            box-sizing: border-box;
            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(--color-text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

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

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

        /* 强制Flex/Text规则 */
        .clan, .glide, .flock, .nose, .base, .anchor {
            display: flex;
            flex-wrap: wrap;
        }

        .clan > *, .glide > *, .flock > *, .nose > *, .base > *, .anchor > * {
            min-width: 0;
        }

        .ink, .apex, .apex-major {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

        p.ink {
            word-break: keep-all; /* 中文优化 */
        }

        /* Layout Structure */
        .skin {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .realm {
            flex: 1;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* Navigation (复用首页风格) */
        .nose {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 100;
            justify-content: center;
        }

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

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

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

        .flock {
            gap: 8px;
            align-items: center;
        }

        .wire {
            padding: 8px 16px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-muted);
            border-radius: var(--radius-sm);
        }

        .wire:hover {
            color: var(--color-primary);
            background-color: var(--color-primary-light);
        }

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

        /* Section 1: Hero Intro (<section>) */
        .soar {
            width: 100%;
            padding: 100px 24px 80px;
            background: radial-gradient(circle at top center, #ffffff 0%, var(--color-bg) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .soar-inner {
            max-width: 800px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        .apex-major {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            color: var(--color-text-main);
        }

        .soar .ink {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--color-text-muted);
            max-width: 600px;
        }

        .clan-actions {
            display: flex;
            gap: 16px;
            margin-top: 16px;
            justify-content: center;
        }

        /* Buttons */
        .dart {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: var(--radius-lg);
            cursor: pointer;
            border: 2px solid transparent;
            transform: translateY(0);
        }

        .dart:hover {
            transform: translateY(-3px);
        }

        .dart-primary {
            background-color: var(--color-primary);
            color: #ffffff;
            box-shadow: var(--shadow-primary);
        }

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

        .dart-secondary {
            background-color: var(--color-surface);
            color: var(--color-text-main);
            border-color: var(--color-border);
            box-shadow: var(--shadow-sm);
        }

        .dart-secondary:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
        }

        /* Section 2: Steps Guide (<div>) */
        .nexus {
            width: 100%;
            max-width: var(--width-max);
            margin: 0 auto;
            padding: 80px 24px;
            display: flex;
            flex-direction: column;
            gap: 48px;
        }

        .nexus-nose {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .nexus-nose .apex {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .clan-split {
            display: flex;
            gap: 48px;
            align-items: center;
        }

        .hull-media {
            flex: 1 1 50%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border);
            background: var(--color-surface);
            transform: translateY(0);
            transition: transform var(--transition);
        }

        .hull-media:hover {
            transform: translateY(-5px);
        }

        .lens {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        .hull-nodes {
            flex: 1 1 40%;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .node {
            display: flex;
            gap: 24px;
            background: var(--color-surface);
            padding: 32px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: all var(--transition);
            transform: translateY(0);
        }

        .node:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--color-primary-light);
        }

        .node-glyph {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: var(--color-primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            font-weight: 800;
            font-size: 1.25rem;
            box-shadow: inset 0 2px 4px rgba(255,255,255,0.5);
        }

        .node-skin {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .node-skin .apex {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .node-skin .ink {
            color: var(--color-text-muted);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Section 3: FAQ (<aside>) */
        .cloud {
            width: 100%;
            max-width: var(--width-max);
            margin: 0 auto;
            padding: 80px 24px 120px;
            display: flex;
            flex-direction: column;
            gap: 48px;
        }

        .cloud-nose {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .cloud-nose .apex {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

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

        .pod {
            background: var(--color-surface);
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all var(--transition);
            transform: translateY(0);
        }

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

        .pod-glyph {
            width: 40px;
            height: 40px;
            margin-bottom: 8px;
            color: var(--color-primary);
        }

        .pod .apex {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-text-main);
        }

        .pod .ink {
            color: var(--color-text-muted);
            font-size: 1rem;
        }

        /* Footer (<section>) */
        .base {
            background-color: var(--color-surface);
            border-top: 1px solid var(--color-border);
            padding: 48px 24px;
            justify-content: center;
        }

        .anchor {
            width: 100%;
            max-width: var(--width-max);
            flex-direction: column;
            align-items: center;
            gap: 16px;
            text-align: center;
        }

        .anchor-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-text-main);
            letter-spacing: -0.02em;
        }

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

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .clan-split {
                flex-direction: column;
            }
            
            .hull-media, .hull-nodes {
                flex: 1 1 100%;
                width: 100%;
            }

            .clan-actions {
                flex-direction: column;
                width: 100%;
            }

            .dart {
                width: 100%;
            }

            .flock {
                display: none; /* Simple mobile hide for demo, assume external JS handles toggle */
            }

            .soar {
                padding-top: 60px;
                padding-bottom: 60px;
            }
        }

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