:root {
            --primary: #4eacf4;
            --primary-dark: #1a8ad6;
            --primary-light: #eef7ff;
            --bg: #f6fafd;
            --bg-white: #ffffff;
            --text-main: #2b3e50;
            --text-muted: #556c80;
            --text-light: #7b8e9f;
            --radius: 20px;
            --shadow: 0 10px 30px rgba(78, 172, 244, 0.06);
            --shadow-hover: 0 15px 35px rgba(78, 172, 244, 0.12);
            --shadow-dark: 0 20px 40px rgba(26, 47, 68, 0.15);
            --border: 1px solid rgba(78, 172, 244, 0.12);
        }

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

        body {
            background-color: var(--bg);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
            line-height: 1.7;
            padding-top: 80px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Banner & Navigation */
        .capp {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(246, 250, 253, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: var(--border);
            z-index: 1000;
            transition: 0.15s ease;
        }

        .tunel {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            min-width: 0;
        }

        .capp .tunel {
            height: 70px;
        }

        .signa {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

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

        .apex-brand {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: -0.5px;
        }

        .orbis {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            min-width: 0;
        }

        .tranz-wire {
            text-decoration: none;
            color: var(--text-muted);
            padding: 8px 16px;
            border-radius: var(--radius);
            font-size: 14px;
            font-weight: 500;
            transition: 0.15s ease;
        }

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

        .tranz-wire.active,
        .tranz-wire.active {
            color: var(--bg-white) !important;
            background: var(--primary) !important;
            font-weight: 600;
        }

        /* Main Container */
        main {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 48px;
            padding: 40px 24px 80px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
        }

        /* Article - Hero Section */
        .bekon {
            padding: 60px 40px;
            background: linear-gradient(135deg, #ffffff, #eef7ff);
            border-radius: var(--radius);
            border: var(--border);
            box-shadow: var(--shadow);
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
            min-width: 0;
        }

        .shel-left {
            flex: 1;
            min-width: 300px;
        }

        .shel-right {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
        }

        .apex-huge {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.25;
            color: #1a2f44;
            letter-spacing: -1px;
            margin-bottom: 20px;
            word-break: keep-all;
        }

        .flow-large {
            font-size: 18px;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 32px;
            word-break: break-word;
        }

        /* Diagnostic UI Dashboard */
        .shard-diagnose {
            background: rgba(26, 47, 68, 0.98);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow-dark);
            color: #ffffff;
            font-family: monospace;
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 440px;
            width: 100%;
            box-sizing: border-box;
        }

        .diagnose-capp {
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 15px;
            margin-bottom: 20px;
        }

        .diagnose-dott-status {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ff4d4d;
            box-shadow: 0 0 10px #ff4d4d;
            display: inline-block;
            animation: pulse-status 1.5s infinite;
        }

        @keyframes pulse-status {
            0% { opacity: 0.5; }
            50% { opacity: 1; }
            100% { opacity: 0.5; }
        }

        .diagnose-apex {
            font-size: 13px;
            font-weight: 600;
            color: #eef7ff;
        }

        .diagnose-body {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .diagnose-bead {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .diagnose-dott-step {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            font-size: 11px;
            color: #ffffff;
            flex-shrink: 0;
            transition: background-color 0.15s ease;
        }

        .diagnose-info {
            flex: 1;
            min-width: 0;
        }

        .diagnose-name {
            font-size: 12px;
            color: #a5b4fc;
            font-weight: 500;
        }

        .diagnose-state {
            font-size: 11px;
            color: var(--text-light);
            margin-top: 2px;
            transition: color 0.15s ease;
        }

        .puls-diagnose {
            width: 100%;
            margin-top: 20px;
            background: linear-gradient(135deg, #4eacf4, #2575fc);
            border: none;
            color: white;
            padding: 12px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.15s ease;
            text-align: center;
            font-size: 14px;
        }

        .puls-diagnose:hover {
            opacity: 0.95;
            transform: translateY(-1px);
        }

        /* Aside - Checklist Section */
        .shel {
            padding: 48px;
            background: var(--bg-white);
            border-radius: var(--radius);
            border: var(--border);
            box-shadow: var(--shadow);
            min-width: 0;
        }

        .apex-large {
            font-size: 28px;
            font-weight: 700;
            color: #1a2f44;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
            word-break: keep-all;
        }

        .flow-medium {
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-muted);
            word-break: break-word;
        }

        .matrx {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 36px;
        }

        .shard {
            padding: 28px;
            background: var(--primary-light);
            border-radius: var(--radius);
            border: var(--border);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
            min-width: 0;
        }

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

        .dott {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-white);
            box-shadow: 0 6px 15px rgba(78, 172, 244, 0.15);
            color: var(--primary);
            flex-shrink: 0;
            margin-bottom: 20px;
        }

        .apex-medium {
            font-size: 18px;
            font-weight: 600;
            color: #1a2f44;
            margin-bottom: 12px;
            word-break: keep-all;
        }

        /* Section - Advanced Section */
        section.shel {
            background: linear-gradient(135deg, #ffffff, #f0f8ff);
        }

        .noda {
            flex: 1;
            min-width: 300px;
            padding: 28px;
            background: var(--bg-white);
            border-radius: var(--radius);
            border: var(--border);
            box-shadow: var(--shadow);
            transition: transform 0.15s ease;
        }

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

        .puls {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #4eacf4, #2575fc);
            color: #ffffff;
            padding: 12px 28px;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(78, 172, 244, 0.3);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
            border: none;
            cursor: pointer;
            margin-top: 16px;
            font-size: 14px;
        }

        .puls:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(78, 172, 244, 0.45);
        }

        .trig {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            color: var(--primary);
            padding: 12px 28px;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            border: 1px solid rgba(78, 172, 244, 0.3);
            transition: all 0.15s ease;
            cursor: pointer;
            margin-top: 16px;
            font-size: 14px;
        }

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

        /* Footer */
        .base {
            background: var(--text-main);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 24px 30px;
            margin-top: auto;
        }

        .base .tunel {
            align-items: flex-start;
            gap: 40px;
        }

        .ankr {
            flex: 2;
            min-width: 280px;
        }

        .ankr .apex-brand {
            color: #ffffff;
            font-size: 24px;
            display: block;
            margin-bottom: 16px;
        }

        .flow-small {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.6);
            word-break: break-word;
        }

        .terma {
            flex: 1;
            min-width: 150px;
        }

        .terma .apex-medium {
            color: #ffffff;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .clust {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .wire {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: 0.15s ease;
        }

        .wire:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .basal {
            width: 100%;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 40px;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .bekon {
                flex-direction: column;
                padding: 40px 24px;
            }
            .shel-left, .shel-right {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 120px;
            }
            .capp .tunel {
                height: auto;
                padding: 12px 16px;
                flex-direction: column;
                gap: 12px;
            }
            .orbis {
                justify-content: center;
                width: 100%;
            }
            .tranz-wire {
                padding: 6px 12px;
                font-size: 13px;
            }
            .apex-huge {
                font-size: 30px;
            }
            .shel {
                padding: 24px;
            }
            .matrx {
                grid-template-columns: 1fr;
            }
        }

.vecta-capp{
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(78, 172, 244, 0.08);
        }

.vecta-capp .vecta-tunel{
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.vecta-capp .vecta-signa{
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

.vecta-capp .vecta-signa img{
            width: 36px;
            height: 36px;
            object-fit: contain;
        }

.vecta-capp .vecta-apex-brand{
            font-size: 22px;
            font-weight: 700;
            color: #1a8ad6;
            letter-spacing: -0.5px;
        }

.vecta-capp .vecta-orbis{
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            min-width: 0;
        }

.vecta-capp .vecta-tranz-wire{
            color: #556c80;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.15s ease;
            position: relative;
            padding: 6px 0;
        }

.vecta-capp .vecta-tranz-wire:hover, .vecta-capp .vecta-tranz-wire.vecta-active{
            color: #4eacf4;
        }

.vecta-capp .vecta-tranz-wire.vecta-active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #4eacf4;
            border-radius: 2px;
        }

@media (max-width: 768px){.vecta-capp .vecta-tunel{
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

.vecta-capp .vecta-orbis{
                width: 100%;
                justify-content: flex-start;
                gap: 14px;
            }}

.vecta-capp {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.ankr-base{
            background-color: #162636;
            color: #9cb2c9;
            padding: 70px 24px 40px;
            border-top: 1px solid #0f1c29;
        }

.ankr-base .ankr-base-kore{
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 48px;
            min-width: 0;
        }

.ankr-base .ankr-base-top{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            min-width: 0;
        }

.ankr-base .ankr-base-info{
            flex: 1 1 300px;
            min-width: 0;
        }

.ankr-base .ankr-base-brand{
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

.ankr-base .ankr-base-desc{
            font-size: 14px;
            line-height: 1.65;
            max-width: 340px;
        }

.ankr-base .ankr-base-wires{
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            min-width: 0;
        }

.ankr-base .ankr-base-clust{
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 12px;
            min-width: 0;
        }

.ankr-base .ankr-base-clust h4{
            color: #ffffff;
            font-size: 16px;
            margin: 0 0 6px 0;
            font-weight: 600;
        }

.ankr-base .ankr-base-wire{
            color: #9cb2c9;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.15s ease;
        }

.ankr-base .ankr-base-wire:hover{
            color: #4eacf4;
        }

.ankr-base .ankr-base-bottom{
            border-top: 1px solid #23374b;
            padding-top: 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            min-width: 0;
        }