/* CSS Variables & Theme Contract */
        :root {
            --primary: #0060df;
            --secondary: #66a3e4;
            --accent: #ff9400;
            --accent-gradient: linear-gradient(135deg, #0060df 0%, #66a3e4 100%);
            --text-dark: #1d1d1f;
            --text-gray: #515154;
            --bg-light: #fcfcfd;
            --bg-soft: #f5f7fa;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.02);
            --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.06);
            --border-color: #e2e8f0;
            --transition-speed: 0.35s;
        }

        /* Reset & Base System */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* Responsive Layout Presets */
        .canopy {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 1. Header & Navigation (Direct Copy & Adaptive) */
        .brow {
            width: 100%;
            border-bottom: 1px solid var(--border-color);
            background: rgba(252, 252, 253, 0.8);
            backdrop-filter: blur(8px);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

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

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

        .orbit {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
            min-width: 0;
        }

        .path {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color var(--transition-speed) ease;
        }

        .path:hover,
        .path.active {
            color: var(--primary);
        }

        /* 2. Article - Gecko & Quantum Showcase (Asymmetric Grid) */
        .blaze {
            padding: 80px 0;
        }

        .blaze-fur {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .clutch-left {
            flex: 1.2;
            min-width: 0;
        }

        .clutch-right {
            flex: 0.8;
            min-width: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .whisper-spark {
            display: inline-block;
            background: var(--bg-soft);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 24px;
            border: 1px solid rgba(0, 96, 223, 0.1);
        }

        .crown-primary {
            font-size: 40px;
            line-height: 1.2;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 24px;
            word-break: break-word;
        }

        .whisper-lead {
            font-size: 18px;
            color: var(--text-gray);
            margin-bottom: 36px;
            line-height: 1.8;
            word-break: break-word;
        }

        .clutch-spark {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            min-width: 0;
        }

        .ignite {
            display: inline-block;
            background: var(--primary);
            color: #ffffff;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(0, 96, 223, 0.2);
            transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
        }

        .ignite:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 96, 223, 0.3);
        }

        .spark-outline {
            display: inline-block;
            background: transparent;
            color: var(--text-dark);
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            border: 1px solid var(--border-color);
            transition: background var(--transition-speed) ease, border-color var(--transition-speed) ease;
        }

        .spark-outline:hover {
            background: var(--bg-soft);
            border-color: var(--text-gray);
        }

        /* Quantum SVG Engine Visualization */
        .quantum-core {
            position: relative;
            width: 320px;
            height: 320px;
        }

        .spin-slow {
            transform-origin: center;
            animation: spin 20s linear infinite;
        }

        .orbit-node-1 {
            transform-origin: center;
            animation: spin 8s linear infinite;
        }

        .orbit-node-2 {
            transform-origin: center;
            animation: spin 12s linear infinite reverse;
        }

        .orbit-node-3 {
            transform-origin: center;
            animation: spin 16s linear infinite;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        /* 3. Section - Technical Specification Matrix */
        .pounce {
            background-color: var(--bg-soft);
            padding: 80px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .pounce-brow {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 56px auto;
        }

        .crown-secondary {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .whisper-sub {
            font-size: 16px;
            color: var(--text-gray);
        }

        .pounce-clutch {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .ember {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 32px;
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
            min-width: 0;
        }

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

        .glint {
            width: 48px;
            height: 48px;
            background: rgba(0, 96, 223, 0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .crown-ember {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .whisper-ember {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
            word-break: break-word;
        }

        /* 4. Aside - Standards & Commitment */
        .flare {
            padding: 80px 0;
        }

        .flare-clutch {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            align-items: center;
        }

        .flare-left {
            flex: 1.2;
            min-width: 0;
        }

        .flare-right {
            flex: 0.8;
            min-width: 0;
        }

        .crown-tertiary {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 24px;
        }

        .whisper-aside {
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 40px;
            line-height: 1.8;
            word-break: break-word;
        }

        .spec-beam {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            min-width: 0;
        }

        .spec-cub {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .spec-num {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
        }

        .spec-whisper {
            font-size: 14px;
            color: var(--text-gray);
            font-weight: 500;
        }

        .quote-burrow {
            background: #ffffff;
            border-left: 4px solid var(--primary);
            padding: 32px;
            border-radius: 0 8px 8px 0;
            box-shadow: var(--shadow-md);
        }

        .quote-whisper {
            font-style: italic;
            font-size: 16px;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.7;
            word-break: break-word;
        }

        .quote-author {
            display: block;
            font-size: 14px;
            color: var(--text-gray);
            font-weight: 600;
        }

        /* 5. Sole - Footer System */
        .sole {
            background-color: var(--bg-light);
            border-top: 1px solid var(--border-color);
            padding: 60px 0 40px 0;
        }

        .sole-grove {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .sole-brand {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .sole-path-clutch {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            min-width: 0;
        }

        .sole-path-clutch a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 14px;
            transition: color var(--transition-speed) ease;
        }

        .sole-path-clutch a:hover {
            color: var(--primary);
        }

        .sole-copyright {
            width: 100%;
            text-align: center;
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
            color: #8a8a8e;
            font-size: 12px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .blaze-fur {
                flex-direction: column;
                text-align: center;
            }

            .clutch-left,
            .clutch-right {
                flex: 1 1 100%;
            }

            .clutch-spark {
                justify-content: center;
            }

            .flare-clutch {
                flex-direction: column;
            }

            .flare-left,
            .flare-right {
                flex: 1 1 100%;
            }
        }

        @media (max-width: 768px) {
            .brow-grove {
                flex-direction: column;
                gap: 16px;
            }

            .orbit {
                justify-content: center;
                gap: 16px;
            }

            .crown-primary {
                font-size: 32px;
            }

            .crown-secondary {
                font-size: 26px;
            }

            .spec-beam {
                justify-content: center;
            }

            .sole-grove {
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }

            .sole-path-clutch {
                justify-content: center;
            }
        }

.trail-brow {
    font-family: var(--font);
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-dark);
}
.trail-brow,
.trail-brow *,
.trail-brow *::before,
.trail-brow *::after {
    box-sizing: border-box;
}

.trail-brow nav,
.trail-brow div,
.trail-brow section,
.trail-brow article,
.trail-brow aside,
.trail-brow p,
.trail-brow h1,
.trail-brow h2,
.trail-brow h3,
.trail-brow h4,
.trail-brow h5,
.trail-brow h6,
.trail-brow a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.trail-brow a.trail-path.trail-active,
.trail-brow a.trail-path {
    --aisite-shell-nav-padding: 6px 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;
}

.trail-brow a.trail-path.trail-active,
.trail-brow a.trail-path.trail-active:hover,
.trail-brow a.trail-path.trail-active:focus,
.trail-brow a.trail-path.trail-active:active,
.trail-brow a.trail-path.trail-active.active,
.trail-brow a.trail-path.trail-active[aria-current="page"],
.trail-brow a.trail-path,
.trail-brow a.trail-path:hover,
.trail-brow a.trail-path:focus,
.trail-brow a.trail-path:active,
.trail-brow a.trail-path.active,
.trail-brow a.trail-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);
}

.trail-brow{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(252, 252, 253, 0.9);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            padding: 16px 0;
            transition: background 0.35s ease;
        }

.trail-brow .trail-brow-grove{
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

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

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

.trail-brow .trail-orbit{
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            align-items: center;
        }

.trail-brow .trail-path{
            font-size: 14px;
            font-weight: 500;
            color: #515154;
            text-decoration: none;
            transition: color 0.35s ease;
            position: relative;
            padding: 6px 0;
        }

.trail-brow .trail-path:hover, .trail-brow .trail-path.trail-active{
            color: #0060df;
        }

.trail-brow .trail-path.trail-active::after{
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: #0060df;
            border-radius: 2px;
        }

@media (max-width: 768px){.trail-brow .trail-brow-grove{
                flex-direction: column;
                gap: 16px;
            }

.trail-brow .trail-orbit{
                justify-content: center;
                gap: 16px;
            }}

.trail-brow {
    background: rgb(252, 252, 253);
    background-image: none;
}

.tail-sole {
    font-family: var(--font);
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-dark);
}
.tail-sole,
.tail-sole *,
.tail-sole *::before,
.tail-sole *::after {
    box-sizing: border-box;
}

.tail-sole nav,
.tail-sole div,
.tail-sole section,
.tail-sole article,
.tail-sole aside,
.tail-sole p,
.tail-sole h1,
.tail-sole h2,
.tail-sole h3,
.tail-sole h4,
.tail-sole h5,
.tail-sole h6,
.tail-sole a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.tail-sole{
            background-color: #f5f7fa;
            border-top: 1px solid #e2e8f0;
            padding: 60px 0 40px;
        }

.tail-sole .tail-sole-grove{
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
        }

.tail-sole .tail-sole-top{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 30px;
            margin-bottom: 30px;
        }

.tail-sole .tail-sole-brand{
            font-size: 24px;
            font-weight: 800;
            color: #1d1d1f;
            letter-spacing: -0.5px;
        }

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

.tail-sole .tail-sole-path{
            font-size: 13.5px;
            color: #515154;
            text-decoration: none;
            transition: color 0.35s ease;
        }

.tail-sole .tail-sole-path:hover{
            color: #0060df;
        }

.tail-sole .tail-sole-bottom{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

.tail-sole .tail-sole-whisper{
            font-size: 13px;
            color: #515154;
        }

@media (max-width: 768px){.tail-sole .tail-sole-top{
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

.tail-sole .tail-sole-beam{
                justify-content: center;
            }

.tail-sole .tail-sole-bottom{
                flex-direction: column;
                text-align: center;
            }}