/* CSS reset & variables */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary: #0060df;
            --secondary: #ff9400;
            --accent: #66a3e4;
            --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-radius: 8px;
        }

        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;
            -webkit-font-smoothing: antialiased;
        }

        /* Navigation Header Styles */
        .brow {
            background: rgba(252, 252, 253, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }

        .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;
            display: block;
        }

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

        .path {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.35s ease;
            position: relative;
            padding: 4px 0;
        }

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

        .path.active {
            color: var(--primary);
            font-weight: 600;
        }

        .path.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        /* Hero (Blaze) Layout styles */
        .blaze {
            padding: 80px 24px;
            background: radial-gradient(circle at 80% 20%, rgba(102, 163, 228, 0.08) 0%, rgba(252, 252, 253, 0) 60%);
        }

        .blaze-grove {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .blaze-left {
            flex: 1 1 550px;
            min-width: 0;
            word-break: break-word;
        }

        .blaze-right {
            flex: 1 1 400px;
            min-width: 0;
        }

        .crown-h1 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }

        .crown-primary {
            font-size: 42px;
            line-height: 1.25;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 24px;
            word-break: keep-all;
            white-space: normal;
        }

        .whisper-lead {
            font-size: 18px;
            line-height: 1.7;
            color: var(--text-gray);
            margin-bottom: 32px;
        }

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

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

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

        .spark {
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            padding: 14px 32px;
            border-radius: var(--border-radius);
            text-decoration: none;
            border: 1px solid rgba(0, 96, 223, 0.3);
            transition: all 0.35s ease;
            display: inline-block;
        }

        .spark:hover {
            background: rgba(0, 96, 223, 0.04);
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        /* Mock UI Container (Interactive Visual Component) */
        .fur-ui {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px;
            box-shadow: var(--shadow-lg);
            transition: transform 0.35s ease;
        }

        .fur-ui:hover {
            transform: translateY(-4px);
        }

        .beam-brow {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            padding-bottom: 12px;
            border-bottom: 1px solid #edf2f7;
            margin-bottom: 16px;
            min-width: 0;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }

        .dot-red { background-color: #ff5f56; }
        .dot-yellow { background-color: #ffbd2e; }
        .dot-green { background-color: #27c93f; }

        .beam-address {
            background: var(--bg-soft);
            border-radius: 6px;
            padding: 6px 12px;
            font-size: 13px;
            color: var(--text-gray);
            flex: 1;
            min-width: 180px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .shield-status {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
        }

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

        .shard-stat {
            background: var(--bg-soft);
            border-radius: var(--border-radius);
            padding: 12px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            min-width: 0;
        }

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

        .whisper-stat-val {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
        }

        /* Tech Spec Section */
        .canopy {
            padding: 80px 24px;
            background-color: var(--bg-soft);
        }

        .canopy-grove {
            max-width: 1200px;
            margin: 0 auto;
        }

        .crown-grove {
            font-size: 32px;
            line-height: 1.3;
            font-weight: 800;
            text-align: center;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .whisper-grove-desc {
            font-size: 16px;
            color: var(--text-gray);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 48px auto;
        }

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

        .ember {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: var(--border-radius);
            padding: 32px;
            box-shadow: var(--shadow-sm);
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .ember:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
        }

        .glint-box {
            width: 54px;
            height: 54px;
            border-radius: var(--border-radius);
            background: rgba(102, 163, 228, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

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

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

        /* Aside Section (Quick Facts & Non-Profit Promise) */
        .fur {
            padding: 80px 24px;
            background: linear-gradient(135deg, rgba(0, 96, 223, 0.03) 0%, rgba(102, 163, 228, 0.05) 100%);
            border-top: 1px solid rgba(0, 0, 0, 0.03);
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }

        .fur-grove {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .fur-left {
            flex: 1 1 500px;
            min-width: 0;
        }

        .fur-right {
            flex: 1 1 400px;
            min-width: 0;
        }

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

        .cub-stat {
            text-align: center;
            background: #ffffff;
            padding: 24px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 96, 223, 0.05);
        }

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

        .stat-tuft {
            font-size: 14px;
            color: var(--text-gray);
            font-weight: 600;
        }

        /* Active Defense Section */
        .grove {
            padding: 80px 24px;
            background-color: var(--bg-light);
        }

        .grove-canopy {
            max-width: 1200px;
            margin: 0 auto;
        }

        .clutch-defense {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 48px;
        }

        .cub-defense-row {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
            padding: 32px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            transition: all 0.35s ease;
        }

        .cub-defense-row:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
            transform: translateX(4px);
        }

        .defense-graphics {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(0, 96, 223, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--primary);
        }

        .defense-body {
            flex: 1;
            min-width: 280px;
        }

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

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

        /* Footer (Sole) Styles */
        .sole {
            background-color: var(--bg-soft);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding: 60px 24px 40px 24px;
        }

        .hearth {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .hearth-brand {
            flex: 1 1 300px;
            min-width: 0;
        }

        .hearth-brand-crown {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .hearth-brand-desc {
            font-size: 14px;
            color: var(--text-gray);
            max-width: 280px;
            margin-bottom: 24px;
        }

        .hearth-links {
            flex: 2 1 600px;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            justify-content: flex-end;
            min-width: 0;
        }

        .hearth-column {
            min-width: 140px;
        }

        .hearth-crown {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hearth-pack {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .hearth-path {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.35s ease;
        }

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

        .hearth-bottom {
            max-width: 1200px;
            margin: 40px auto 0 auto;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .hearth-copyright {
            font-size: 13px;
            color: var(--text-gray);
        }

        /* Mobile adaptation (Responsive Breakpoints) */
        @media (max-width: 768px) {
            .brow-grove {
                padding: 12px 16px;
                justify-content: center;
                gap: 16px;
            }
            .orbit {
                justify-content: center;
                gap: 16px;
            }
            .blaze {
                padding: 48px 16px;
            }
            .crown-primary {
                font-size: 32px;
            }
            .canopy, .fur, .grove {
                padding: 48px 16px;
            }
            .hearth {
                flex-direction: column;
                gap: 32px;
            }
            .hearth-links {
                justify-content: flex-start;
                gap: 32px;
            }
            .hearth-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
        }

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