:root {
            --primary: #0060df;
            --secondary: #ff9400;
            --accent-gradient: linear-gradient(135deg, #ff9400 0%, #ff3d00 100%);
            --text-dark: #1d1d1f;
            --text-gray: #515154;
            --bg-light: #fcfcfd;
            --bg-soft: #f5f7fa;
            --border: #e2e8f0;
            --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);
            --radius: 8px;
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
        }

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

        body {
            font-family: var(--font);
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Header Style */
        .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;
        }

        .brow-grove {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 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: 28px;
            align-items: center;
        }

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

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

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

        /* Main Container */
        .grove {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Block 1: Hero Section (asymmetric_grid) */
        .blaze {
            display: grid;
            grid-template-columns: 62% calc(38% - 40px);
            gap: 40px;
            align-items: center;
            padding: 80px 0;
        }

        .blaze-dominant {
            position: relative;
            z-index: 1;
        }

        .vista-fur {
            width: 100%;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            transition: transform 0.35s ease;
        }

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

        .vista-element {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .blaze-minor {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

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

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

        .clutch-sparks {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 24px;
        }

        .ignite {
            background: var(--primary);
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius);
            text-decoration: none;
            transition: all 0.35s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid transparent;
            box-shadow: 0 4px 14px rgba(0, 96, 223, 0.2);
        }

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

        .leap {
            background: transparent;
            color: var(--primary);
            font-size: 15px;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius);
            text-decoration: none;
            transition: all 0.35s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
        }

        .leap:hover {
            background: var(--bg-soft);
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .whisper-caption {
            font-size: 13px;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .glint-small {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Block 2: Features Grid Section */
        .canopy {
            padding: 100px 0;
            border-top: 1px solid var(--border);
        }

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

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

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

        .canopy-clutch {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .canopy-whisper-side {
            flex: 1 1 500px;
            min-width: 0;
        }

        .ember {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            margin-bottom: 20px;
            transition: all 0.35s ease;
            box-shadow: var(--shadow-sm);
        }

        .ember:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: rgba(0, 96, 223, 0.2);
        }

        .ember-brow {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
        }

        .glint-medium {
            width: 24px;
            height: 24px;
            fill: var(--primary);
        }

        .crown-tertiary {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
        }

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

        .canopy-vista-side {
            flex: 1 1 450px;
            min-width: 0;
        }

        /* Block 3: Features List Section */
        .fur {
            padding: 100px 0;
            border-top: 1px solid var(--border);
        }

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

        .fur-vista-side {
            flex: 1 1 450px;
            min-width: 0;
        }

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

        .clutch-pack {
            margin-top: 32px;
        }

        .cub {
            display: flex;
            gap: 20px;
            margin-bottom: 24px;
            align-items: flex-start;
        }

        .cub-glint-fur {
            background: rgba(0, 96, 223, 0.08);
            padding: 12px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cub-fur {
            flex: 1;
            min-width: 0;
        }

        /* Block 4: Brand Mission Section */
        .hearth-proof {
            background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
            padding: 80px 48px;
            border-radius: var(--radius);
            margin: 80px 0;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .hearth-proof::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 148, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .hearth-clutch {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .whisper-quote {
            font-size: 20px;
            font-style: italic;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .hearth-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-top: 40px;
        }

        .hearth-shard {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            padding: 24px;
            border-radius: var(--radius);
            border: 1px solid rgba(226, 232, 240, 0.5);
            text-align: left;
        }

        /* Block 5: Editorial Scent Section */
        .scent {
            padding: 80px 0;
            border-top: 1px solid var(--border);
        }

        .scent-deck {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .scent-ember {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 24px;
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 200px;
        }

        .scent-ember:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .scent-crown {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .scent-whisper {
            font-size: 13.5px;
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .scent-path {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.35s ease;
        }

        .scent-path:hover {
            gap: 10px;
        }

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

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

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

        .sole-brand {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

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

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

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

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

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

        /* Responsive Design */
        @media (max-width: 1024px) {
            .blaze {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .blaze-minor {
                align-items: center;
            }

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

            .whisper-caption {
                justify-content: center;
            }
        }

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

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

            .canopy-clutch,
            .fur-clutch {
                flex-direction: column;
            }

            .canopy-vista-side,
            .fur-vista-side {
                order: -1;
            }

            .hearth-proof {
                padding: 40px 24px;
            }

            .sole-top {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

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

            .sole-bottom {
                flex-direction: column;
                text-align: 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;
            }}