/* ==========================================================================
           Visual Contract & Variables (Inherited from Homepage Family)
           ========================================================================== */
        :root {
            --bg: #050508;
            --surface: #0f0f16;
            --surface-hover: #1a1a26;
            --primary: #4207f3;
            --primary-glow: rgba(66, 7, 243, 0.4);
            --accent: #00e5ff;
            --text: #f0f0f5;
            --text-dim: #8a8a9e;
            --border: #222230;
            --radius: 8px;
            --radius-lg: 12px;
            --transition: 0.25s ease;
        }

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

        body {
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

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

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

        /* ==========================================================================
           Global Enforcements (Flex/Grid/Text)
           ========================================================================== */
        .span {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .axis {
            display: flex;
            flex-wrap: wrap;
        }

        .axis > * {
            min-width: 0;
        }

        .flap, .edge {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .flap {
            word-break: keep-all; /* Better for Chinese */
            line-height: 1.7;
            color: var(--text-dim);
        }

        .edge {
            white-space: normal;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        /* ==========================================================================
           Header & Navigation (Strictly Matching Provided Structure)
           ========================================================================== */
        .trim {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(5, 5, 8, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .breeze-span {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .breeze-span > * {
            min-width: 0;
        }

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

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

        .fin {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

        .fin > * {
            min-width: 0;
        }

        .nose {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-dim);
            position: relative;
            padding: 0.5rem 0;
        }

        .nose:hover, .nose.active {
            color: var(--text);
        }

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

        /* ==========================================================================
           Buttons / Actions
           ========================================================================== */
        .toss {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            border-radius: var(--radius);
            border: 1px solid transparent;
            cursor: pointer;
            transition: all var(--transition);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            gap: 0.75rem;
        }

        .toss:hover {
            background: #5015ff;
            box-shadow: 0 8px 25px var(--primary-glow);
            transform: translateY(-2px);
        }

        .fling {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            background: var(--surface);
            color: var(--text);
            font-weight: 500;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all var(--transition);
            gap: 0.5rem;
        }

        .fling:hover {
            background: var(--surface-hover);
            border-color: var(--primary);
            color: #fff;
        }

        /* ==========================================================================
           Hero Section (Variant: Offset Overlap Data-UI)
           ========================================================================== */
        .launch {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .launch::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
            opacity: 0.5;
            z-index: 0;
            pointer-events: none;
        }

        .launch-span {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .folio {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .launch-edge {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.2;
        }

        .launch-edge span {
            color: var(--primary);
        }

        .orbit {
            position: relative;
            /* Implementation of offset overlap */
            border-radius: var(--radius-lg);
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 1rem;
            box-shadow: 20px 20px 60px rgba(0,0,0,0.6);
            transform: translateZ(0); /* Hardware accel */
        }

        .orbit::after {
            content: '';
            position: absolute;
            top: 20px;
            right: -20px;
            bottom: -20px;
            left: 20px;
            border: 1px solid var(--primary);
            border-radius: var(--radius-lg);
            z-index: -1;
            opacity: 0.3;
        }

        .seam {
            border-radius: var(--radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            width: 100%;
        }

        /* ==========================================================================
           Matrix Section (Platforms)
           ========================================================================== */
        .realm-span {
            padding: 4rem 0 6rem;
            background: linear-gradient(to bottom, transparent, rgba(15, 15, 22, 0.4));
        }

        .realm-edge {
            text-align: center;
            font-size: clamp(2rem, 3vw, 2.5rem);
            margin-bottom: 1rem;
        }

        .realm-flap {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .crease {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .fold {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .fold::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--border);
            transition: background var(--transition);
        }

        .fold:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            border-color: rgba(66, 7, 243, 0.3);
        }

        .fold:hover::before {
            background: var(--primary);
        }

        .fold-edge {
            font-size: 1.5rem;
        }

        .tail {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            color: var(--accent);
        }

        .tail svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .matrix-visual {
            margin-bottom: 4rem;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 30px 60px rgba(0,0,0,0.7);
        }

        /* ==========================================================================
           Specs Section
           ========================================================================== */
        .ream-span {
            padding: 4rem 0 8rem;
            border-top: 1px solid var(--border);
        }
        
        .ream {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
        }

        .loft {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .ply {
            display: flex;
            flex-wrap: wrap;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--border);
            align-items: center;
        }
        
        .ply > * { min-width: 0; }

        .ply:last-child {
            border-bottom: none;
        }

        .ply-tip {
            flex: 1 1 200px;
            color: var(--text);
            font-weight: 500;
        }

        .ply-value {
            flex: 2 1 300px;
            color: var(--text-dim);
            font-size: 0.95rem;
        }

        /* ==========================================================================
           Footer
           ========================================================================== */
        .hue {
            background: #020204;
            border-top: 1px solid var(--border);
            padding: 4rem 0;
        }

        .hangar {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .hangar > * {
            min-width: 0;
        }

        .hangar-edge {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 1px;
        }

        .hangar-flap {
            font-size: 0.85rem;
            color: var(--text-dim);
        }

        /* ==========================================================================
           Responsive
           ========================================================================== */
        @media (max-width: 1024px) {
            .launch-span, .ream {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .orbit::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .fin {
                display: none; /* In a real app, a hamburger menu would toggle this. Kept hidden for clean HTML output as requested, or flex-column if visible */
            }
            .launch-edge {
                font-size: 2.2rem;
            }
            .crease {
                grid-template-columns: 1fr;
            }
            .ply {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
        }

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

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

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

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

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

.breeze-trim a.breeze-nose {
    --aisite-shell-nav-padding: 0.5rem 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;
}

.breeze-trim a.breeze-nose,
.breeze-trim a.breeze-nose:hover,
.breeze-trim a.breeze-nose:focus,
.breeze-trim a.breeze-nose:active,
.breeze-trim a.breeze-nose.active,
.breeze-trim a.breeze-nose[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);
}

.breeze-trim .breeze-span-2{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.breeze-trim{
            position: fixed;
            top: 0; left: 0; right: 0;
            height: 70px;
            background: rgba(5, 5, 8, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid #222230;
            z-index: 100;
            display: flex;
            align-items: center;
        }

.breeze-trim .breeze-breeze-span{
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

.breeze-trim .breeze-wing{
            display: flex;
            align-items: center;
        }

.breeze-trim .breeze-wing img{
            height: 32px;
            width: auto;
        }

.breeze-trim .breeze-fin{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.breeze-trim .breeze-nose{
            color: #8a8a9e;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }

.breeze-trim .breeze-nose::after{
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 2px;
            background: #00e5ff;
            transform: scaleX(0);
            transition: transform 0.25s ease;
            transform-origin: right;
        }

.breeze-trim .breeze-nose:hover, .breeze-trim .breeze-nose.active{
            color: #fff;
        }

.breeze-trim .breeze-nose:hover::after, .breeze-trim .breeze-nose.active::after{
            transform: scaleX(1);
            transform-origin: left;
        }

@media (max-width: 768px){.breeze-trim .breeze-fin{ display: none;  }}

.breeze-trim {
    background: rgb(5, 5, 8);
    background-image: none;
}

.land-hangar-span.land-hue {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text);
}
.land-hangar-span.land-hue,
.land-hangar-span.land-hue *,
.land-hangar-span.land-hue *::before,
.land-hangar-span.land-hue *::after {
    box-sizing: border-box;
}

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

.land-hangar-span.land-hue p,
.land-hangar-span.land-hue h1,
.land-hangar-span.land-hue h2,
.land-hangar-span.land-hue h3,
.land-hangar-span.land-hue h4,
.land-hangar-span.land-hue h5,
.land-hangar-span.land-hue h6 {
    text-decoration: none;
}

.land-hangar-span.land-hue img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.land-hangar-span.land-hue {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.land-hangar-span.land-hue a,
.land-hangar-span.land-hue a:hover,
.land-hangar-span.land-hue a:focus,
.land-hangar-span.land-hue a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.land-hangar-span.land-hue .land-span{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.land-hangar-span.land-hue .land-hangar-span{
            border-top: 1px solid #222230;
            padding: 4rem 0 2rem 0;
            background: #050508;
        }

.land-hangar-span.land-hue .land-hue-axis{
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 3rem;
        }

.land-hangar-span.land-hue .land-hue-brand{
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }

.land-hangar-span.land-hue .land-hue-flap{ max-width: 300px; font-size: 0.9rem; }

.land-hangar-span.land-hue .land-hue-links{
            display: flex;
            gap: 3rem;
        }

.land-hangar-span.land-hue .land-hue-col{ display: flex; flex-direction: column; gap: 1rem; }

.land-hangar-span.land-hue .land-hue-edge{ font-size: 1rem; color: #fff; margin-bottom: 0.5rem; }

.land-hangar-span.land-hue .land-hue-nose{ font-size: 0.9rem; color: #8a8a9e; }

.land-hangar-span.land-hue .land-hue-nose:hover{ color: #00e5ff; }

.land-hangar-span.land-hue .land-hue-bottom{
            border-top: 1px solid #222230;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #8a8a9e;
        }

@media (max-width: 768px){.land-hangar-span.land-hue .land-hue-axis{ flex-direction: column; gap: 2rem; }

.land-hangar-span.land-hue .land-hue-links{ flex-direction: column; gap: 2rem; }}