/* CSS Variables - Inheriting Visual Contract */
:root {
    --nova-primary: #e2566b;
    --nova-primary-dark: #c03d50;
    --nova-text-main: #2c3038;
    --nova-text-inverse: #e9ecef;
    --nova-bg-main: #f8f9fa;
    --nova-bg-surface: #ffffff;
    --nova-bg-dark: #0a0b0d;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(226, 86, 107, 0.15);
    --transition-speed: 0.15s ease;
    --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Global Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-base);
    background-color: var(--nova-bg-main);
    color: var(--nova-text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

img, svg {
    display: block;
    max-width: 100%;
}

/* Typography & Text Utilities */
.apex {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

.echo {
    word-break: break-word;
    overflow-wrap: break-word;
    word-break: keep-all;
    color: #555962;
    font-size: 1.125rem;
}

/* Layout Utilities (Mandatory Flex Rules) */
.pool {
    display: flex;
    flex-wrap: wrap;
}

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

.veil {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* === Navigation (Mandatory Reuse) === */
.crown {
    background: var(--nova-bg-surface);
    padding: 1rem 5%;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.crest {
    width: 140px;
}

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

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

.wire {
    font-weight: 600;
    color: var(--nova-text-main);
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

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

.wire::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nova-primary);
    transition: width var(--transition-speed);
}

.wire:hover::after,
.wire.active::after {
    width: 100%;
}

/* === Main Content === */
.cloak {
    display: flex;
    flex-direction: column;
}

/* 1. Hero Download (Vault) - Split Diagonal Design Seed */
.vault {
    background: var(--nova-bg-dark);
    color: var(--nova-text-inverse);
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
}

/* Diagonal Background Split Effect */
.vault::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(135deg, transparent 20%, rgba(226, 86, 107, 0.08) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.vault .veil {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.vault .nexus {
    flex: 1 1 500px;
    min-width: 0;
}

.vault .apex {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
}

.vault .echo {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 90%;
}

.vault .portal {
    flex: 1 1 400px;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.lens {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.portal:hover .lens {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

/* Platform Cards Grid */
.platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.node {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed);
}

.node:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(226, 86, 107, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.node-crown {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.glyph {
    width: 32px;
    height: 32px;
    fill: currentColor;
    color: var(--nova-primary);
}

.node .apex {
    font-size: 1.25rem;
    margin: 0;
    color: #fff;
}

.node .echo {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.warp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--nova-primary);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid var(--nova-primary);
    box-shadow: 0 8px 20px rgba(226, 86, 107, 0.3);
    margin-top: auto;
    cursor: pointer;
}

.warp:hover {
    background: transparent;
    color: var(--nova-primary);
    box-shadow: 0 4px 10px rgba(226, 86, 107, 0.1);
}

/* 2. Installation Guide (Steer) */
.steer {
    padding: 6rem 0;
    background: var(--nova-bg-main);
}

.steer-crown {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.steer-crown .apex {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--nova-text-main);
    margin-bottom: 1rem;
}

.steps-pool {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.shard {
    background: var(--nova-bg-surface);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    transition: transform var(--transition-speed);
    text-align: center;
}

.shard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pulse {
    width: 60px;
    height: 60px;
    background: rgba(226, 86, 107, 0.1);
    color: var(--nova-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.shard .apex {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--nova-text-main);
}

/* 3. Cross Platform Info (Orbit) */
.orbit {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.orbit .veil {
    display: flex;
    justify-content: center;
}

.cell {
    background: var(--nova-bg-main);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    max-width: 900px;
    width: 100%;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

.cell .glyph {
    width: 64px;
    height: 64px;
    margin: 0 auto 2rem;
    color: var(--nova-primary);
}

.cell .apex {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--nova-text-main);
}

.cell .echo {
    max-width: 600px;
    margin: 0 auto;
}

/* === Footer (Tail) === */
.tail {
    background: var(--nova-bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.base {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
    margin-bottom: 3rem;
}

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

.root {
    flex: 1 1 250px;
}

.root .apex {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.crypt {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    flex: 2 1 400px;
}

.crypt-col {
    flex: 1 1 150px;
    min-width: 0;
}

.crypt-col .apex {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.crypt-col .wire {
    display: block;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.crypt-col .wire::after {
    display: none;
}

.crypt-col .wire:hover {
    color: var(--nova-primary);
}

.band {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .vault .veil {
        flex-direction: column;
        text-align: center;
    }
    
    .vault .echo {
        margin: 0 auto 3rem;
    }

    .platforms {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .mesh {
        display: none; /* In a real scenario, this would be a toggle mesh */
    }
    
    .vault {
        padding: 4rem 0 5rem;
    }
    
    .platforms {
        grid-template-columns: 1fr;
    }
    
    .steps-pool {
        grid-template-columns: 1fr;
    }
    
    .cell {
        padding: 2rem 1.5rem;
    }
}

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

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

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

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

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

.helm-crown.helm-pool a.helm-wire {
    --aisite-shell-nav-padding: 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;
}

.helm-crown.helm-pool a.helm-wire,
.helm-crown.helm-pool a.helm-wire:hover,
.helm-crown.helm-pool a.helm-wire:focus,
.helm-crown.helm-pool a.helm-wire:active,
.helm-crown.helm-pool a.helm-wire.active,
.helm-crown.helm-pool a.helm-wire[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);
}

.helm-crown.helm-pool .helm-pool, .helm-crown.helm-pool .helm-mesh{
            display: flex;
            flex-wrap: wrap;
        }

.helm-crown.helm-pool .helm-pool > *, .helm-crown.helm-pool .helm-mesh > *{
            min-width: 0;
        }

.helm-crown.helm-pool .helm-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 11, 13, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 1rem 5vw;
            justify-content: space-between;
            align-items: center;
        }

.helm-crown.helm-pool .helm-crest{
            display: flex;
            align-items: center;
            height: 32px;
        }

.helm-crown.helm-pool .helm-crest img{
            height: 100%;
            width: auto;
            object-fit: contain;
        }

.helm-crown.helm-pool .helm-mesh{
            gap: 2rem;
            align-items: center;
        }

.helm-crown.helm-pool .helm-wire{
            color: #e9ecef;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
            position: relative;
        }

.helm-crown.helm-pool .helm-wire:hover, .helm-crown.helm-pool .helm-wire.active{
            color: #e2566b;
        }

.helm-crown.helm-pool .helm-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #e2566b;
            border-radius: 2px;
        }

@media (max-width: 768px){.helm-crown.helm-pool .helm-crown{
                padding: 1rem 5vw;
                flex-direction: column;
                gap: 1rem;
            }

.helm-crown.helm-pool .helm-mesh{
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }}

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

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

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

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

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

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

.crypt-tail .crypt-echo{
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all; 
        }

.crypt-tail{
            background: #050608;
            color: #8a8d93;
            padding: 4rem 5vw 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.crypt-tail .crypt-tail-orbit{
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

.crypt-tail .crypt-tail-brand{
            flex: 1 1 300px;
        }

.crypt-tail .crypt-tail-brand h2{
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

.crypt-tail .crypt-tail-brand p{
            font-size: 0.9rem;
            max-width: 300px;
        }

.crypt-tail .crypt-tail-mesh{
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

.crypt-tail .crypt-tail-pool{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.crypt-tail .crypt-tail-pool h4{
            color: #fff;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

.crypt-tail .crypt-tail-pool a{
            color: #8a8d93;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.15s ease;
        }

.crypt-tail .crypt-tail-pool a:hover{
            color: #e2566b;
        }

.crypt-tail .crypt-tail-base{
            max-width: 1400px;
            margin: 2rem auto 0;
            text-align: center;
            font-size: 0.85rem;
        }