/* CSS Variables */
        :root {
            --brand: #f0af4e;
            --brand-hover: #e09b3d;
            --bg-base: #0b0f19;
            --bg-surface: #131b2c;
            --bg-elevated: #1a243a;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --border: #2e3c5a;
            --radius: 20px;
            --transition: 0.35s ease;
            --space-sm: 1rem;
            --space-md: 2rem;
            --space-lg: 4rem;
            --max-w: 1280px;
        }

        /* Base & Reset */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-base);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        
        /* Mandatory Flex/Grid & Text Rules */
        .flex-squad { display: flex; flex-wrap: wrap; }
        .flex-squad > * { min-width: 0; }
        .pulp-hull { word-break: break-word; overflow-wrap: break-word; word-break: keep-all; }
        h1, h2, h3, h4 { white-space: normal; line-height: 1.3; font-weight: 700; color: var(--text-main); }
        a { text-decoration: none; color: inherit; transition: color var(--transition); }
        img, svg { max-width: 100%; height: auto; display: block; }

        /* Layout Hulls (Containers) */
        .airspace { display: block; width: 100%; }
        .ream, .hangar {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: var(--space-lg) var(--space-md);
        }

        /* Navigation (Nose & Wind) */
        .nose {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(11, 15, 25, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }
        .drift {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 1rem var(--space-md);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .drift > * { min-width: 0; }
        .crest img { height: 32px; width: auto; object-fit: contain; }
        .wind-flock {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .wind-flock > * { min-width: 0; }
        .wind-path {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .wind-path:hover, .wind-path.active { color: var(--brand); }
        .wind-path.active::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 2px;
            background: var(--brand);
            border-radius: 2px;
        }

        /* Hero (Soar - Cinematic Strip) */
        .soar {
            width: 100%;
            aspect-ratio: 21/9;
            min-height: 400px;
            max-height: 700px;
            background: linear-gradient(135deg, #1e293b 0%, #0b0f19 100%);
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end; /* Cinematic text at bottom edge */
            padding: var(--space-lg) var(--space-md);
            overflow: hidden;
        }
        .soar > * { min-width: 0; }
        .soar::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: radial-gradient(circle at top right, rgba(240, 175, 78, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        .takeoff-hull {
            position: relative;
            z-index: 10;
            max-width: var(--max-w);
            margin: 0 auto;
            width: 100%;
            border-left: 4px solid var(--brand);
            padding-left: 1.5rem;
        }
        .flight-peak {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        .takeoff-pulp {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--text-muted);
            max-width: 800px;
            margin-bottom: 2rem;
        }

        /* Buttons (Toss) */
        .toss {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 2rem;
            background: var(--brand);
            color: #000;
            font-weight: 600;
            border-radius: 30px;
            font-size: 1.1rem;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
        }
        .toss:hover {
            background: var(--brand-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(240, 175, 78, 0.2);
        }

        /* Article: Capability (Sync) */
        .sync-hull {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }
        .sync-hull > * { min-width: 0; }
        .sync-pulp { flex: 1; min-width: 300px; }
        .sync-ink { flex: 1; min-width: 300px; }
        .sync-ink img {
            border-radius: var(--radius);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            border: 1px solid var(--border);
        }
        .ream-peak {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 1.5rem;
        }
        .sync-pulp p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .squad-flock {
            margin-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            flex-direction: column;
        }
        .squad-flock > * { min-width: 0; }
        .ply-flap {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        .ply-mark {
            width: 28px; height: 28px;
            flex-shrink: 0;
            color: var(--brand);
            margin-top: 4px;
        }
        .ply-pulp h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
        .ply-pulp p { font-size: 0.95rem; margin-bottom: 0; }

        /* Section: Grid (Privacy & Groups) */
        .privacy-hull {
            background: var(--bg-surface);
            border-radius: var(--radius);
            padding: var(--space-lg);
            margin-top: var(--space-md);
            margin-bottom: var(--space-md);
        }
        .center-nose { text-align: center; margin-bottom: 4rem; max-width: 700px; margin-inline: auto; }
        
        .crease-squad {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
        .fold {
            background: var(--bg-elevated);
            padding: 2.5rem 2rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .fold:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            border-color: rgba(240, 175, 78, 0.3);
        }
        .fold-mark {
            width: 48px; height: 48px;
            margin-bottom: 1.5rem;
            background: rgba(240, 175, 78, 0.1);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: var(--brand);
            padding: 10px;
        }
        .fold-peak { font-size: 1.3rem; margin-bottom: 1rem; }
        .fold-pulp { color: var(--text-muted); font-size: 0.95rem; }

        /* Aside: Pathways (Site Topics) */
        .pathway-hull { border-top: 1px solid var(--border); }
        .path-squad {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .path-fold {
            display: block;
            padding: 2rem;
            background: var(--bg-surface);
            border-radius: calc(var(--radius) - 4px);
            position: relative;
            overflow: hidden;
        }
        .path-fold::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 4px; height: 100%;
            background: var(--border);
            transition: background var(--transition);
        }
        .path-fold:hover::before { background: var(--brand); }
        .path-fold:hover .path-peak { color: var(--brand); }
        .path-peak { font-size: 1.2rem; margin-bottom: 0.5rem; transition: color var(--transition); }
        .path-pulp { color: var(--text-muted); font-size: 0.9rem; }

        /* Footer (Land & Ground) */
        .land {
            background: var(--bg-surface);
            border-top: 1px solid var(--border);
            padding: var(--space-lg) var(--space-md) 2rem;
            margin-top: var(--space-lg);
        }
        .ground-tail {
            max-width: var(--max-w);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .ground-tail > * { min-width: 0; }
        .tail-brand { font-size: 1.2rem; font-weight: 700; color: var(--text-main); }

        /* Responsive */
        @media (max-width: 1024px) {
            .soar { aspect-ratio: 16/9; }
        }
        @media (max-width: 768px) {
            .wind-flock { gap: 1rem; font-size: 0.9rem; }
            .soar { aspect-ratio: auto; min-height: 50vh; padding: 2rem 1rem; align-items: center; }
            .sync-hull { flex-direction: column; gap: 2rem; }
            .crease-squad { grid-template-columns: 1fr; }
            .path-squad { grid-template-columns: 1fr; }
            .ground-tail { flex-direction: column; text-align: center; justify-content: center; }
        }

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

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

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

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

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

.drift-nose a.drift-wind-path {
    --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;
}

.drift-nose a.drift-wind-path,
.drift-nose a.drift-wind-path:hover,
.drift-nose a.drift-wind-path:focus,
.drift-nose a.drift-wind-path:active,
.drift-nose a.drift-wind-path.active,
.drift-nose a.drift-wind-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);
}

.drift-nose{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(11, 15, 25, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #2e3c5a;
        }

.drift-nose .drift-drift{
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.drift-nose .drift-drift > *{ min-width: 0; }

.drift-nose .drift-crest img{ height: 32px; width: auto; object-fit: contain; }

.drift-nose .drift-wind-flock{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.drift-nose .drift-wind-flock > *{ min-width: 0; }

.drift-nose .drift-wind-path{
            color: #94a3b8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            position: relative;
        }

.drift-nose .drift-wind-path:hover, .drift-nose .drift-wind-path.active{ color: #f0af4e; }

.drift-nose .drift-wind-path.active::after{
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 2px;
            background: #f0af4e;
            border-radius: 2px;
        }

@media (max-width: 768px){.drift-nose .drift-wind-flock{ gap: 1rem; font-size: 0.9rem; }}

.drift-nose {
    background: rgb(11, 15, 25);
    background-image: none;
}

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

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

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

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

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

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

.land-land .land-wind-path{
            color: #94a3b8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            position: relative;
        }

.land-land .land-wind-path:hover, .land-land .land-wind-path.active{ color: #f0af4e; }

.land-land .land-wind-path.active::after{
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 2px;
            background: #f0af4e;
            border-radius: 2px;
        }

.land-land{
            background: #131b2c;
            border-top: 1px solid #2e3c5a;
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
        }

.land-land .land-ground-tail{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #2e3c5a;
            color: #94a3b8;
            font-size: 0.9rem;
        }

.land-land .land-ground-tail > *{ min-width: 0; }

.land-land .land-tail-brand{ font-size: 1.2rem; font-weight: 700; color: #f8fafc; }

@media (max-width: 768px){.land-land .land-ground-tail{ flex-direction: column; text-align: center; justify-content: center; }}