:root {
    --nova-primary: #e2566b;
    --nova-primary-dark: #c03d50;
    --nova-bg-light: #f8f9fa;
    --nova-bg-dark: #0a0b0d;
    --nova-text-main: #2c3038;
    --nova-text-inverse: #e9ecef;
    --nova-text-muted: #6c757d;
    --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);
    --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --transition-fast: 0.15s ease;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-base);
    background-color: var(--nova-bg-light);
    color: var(--nova-text-main);
    line-height: 1.7;
    overflow-x: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Reset for inputs/buttons */
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
* { box-sizing: border-box; }

/* Flexbox utilities */
.pool {
    display: flex;
    flex-wrap: wrap;
}
.pool > * {
    min-width: 0;
}

/* --- Navigation (Inherited) --- */
.crown {
    position: sticky;
    top: 0;
    z-index: 1000;
    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 5%;
    align-items: center;
    justify-content: space-between;
}
.crest img {
    height: 32px;
    width: auto;
    display: block;
}
.mesh {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}
.mesh > * {
    min-width: 0;
}
.wire {
    color: var(--nova-text-inverse);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
    padding: 0.5rem 0;
}
.wire:hover,
.wire.active {
    opacity: 1;
    color: #fff;
}
.wire.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--nova-primary);
    border-radius: 2px;
}

/* --- Layout Containers --- */
.tube {
    width: 100%;
}
.cloak {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- Typography --- */
.apex {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    white-space: normal;
}
.echo {
    word-break: keep-all;
    line-height: 1.8;
}

/* --- Components --- */
.warp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.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);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.warp:hover {
    background: var(--nova-primary-dark);
    border-color: var(--nova-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(226, 86, 107, 0.4);
}
.warp-ghost {
    background: transparent;
    color: var(--nova-primary);
    box-shadow: none;
}
.warp-ghost:hover {
    background: rgba(226, 86, 107, 0.1);
    box-shadow: none;
}

.node {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.node:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(226, 86, 107, 0.1);
    color: var(--nova-primary);
    margin-bottom: 1.5rem;
}

/* --- Sections --- */

/* Hero: Vault (Split Diagonal Blueprint) */
.vault {
    background: var(--nova-bg-dark);
    color: var(--nova-text-inverse);
    position: relative;
    padding: 120px 0 160px;
    overflow: hidden;
}
.vault-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(226,86,107,0.15) 0%, rgba(10,11,13,0) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}
.vault .cloak {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}
.vault-veil {
    flex: 1 1 500px;
    min-width: 0;
}
.vault .apex {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #fff;
    margin: 0 0 1.5rem 0;
}
.vault .echo {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 540px;
}
.vault-lens {
    flex: 1 1 400px;
    min-width: 0;
    display: flex;
    justify-content: center;
    position: relative;
}
.art-play {
    width: 100%;
    max-width: 480px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(226, 86, 107, 0.2));
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
.vault-lens:hover .art-play {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

/* Article: Nexus (Netflix Unblocking) */
.nexus {
    padding: 8rem 0;
    background: var(--nova-bg-light);
    position: relative;
}
.nexus-crown {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.nexus-crown .apex {
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--nova-text-main);
    margin-bottom: 1rem;
}
.nexus-crown .echo {
    font-size: 1.15rem;
    color: var(--nova-text-muted);
}
.nexus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.nexus-grid .node .apex {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
    color: var(--nova-text-main);
}
.nexus-grid .node .echo {
    color: var(--nova-text-muted);
    margin: 0;
}

/* Section: Portal (4K Quality) */
.portal {
    padding: 8rem 0;
    background: #fff;
}
.portal-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5rem;
}
.portal-info {
    flex: 1 1 400px;
    min-width: 0;
}
.portal-info .apex {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--nova-text-main);
    margin-bottom: 1.5rem;
}
.portal-info .echo {
    font-size: 1.15rem;
    color: var(--nova-text-muted);
    margin-bottom: 2.5rem;
}
.portal-mesh {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.portal-fiber {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--nova-bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--nova-primary);
    transition: transform var(--transition-fast);
}
.portal-fiber:hover {
    transform: translateX(10px);
}
.portal-fiber .glyph {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    flex-shrink: 0;
}
.portal-fiber-echo {
    flex: 1;
    min-width: 0;
}
.portal-fiber-echo .apex {
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
}
.portal-fiber-echo .echo {
    font-size: 0.95rem;
    margin: 0;
}
.portal-visual {
    flex: 1 1 450px;
    min-width: 0;
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--nova-bg-dark) 0%, #1a1c23 100%);
    padding: 3rem;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}
.portal-visual::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(226,86,107,0.1) 0%, transparent 60%);
    animation: pulse 4s infinite alternate;
}
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    100% { transform: scale(1.05); opacity: 1; }
}

/* Footer: Tail */
.tail {
    background: var(--nova-bg-dark);
    color: var(--nova-text-inverse);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.tail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}
.tail-brand .apex {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}
.tail-brand .echo {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.tail-pool .apex {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.tail-mesh {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.tail-wire {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}
.tail-wire:hover {
    color: var(--nova-primary);
}
.tail-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .vault { padding: 100px 0; }
    .nexus, .portal { padding: 6rem 0; }
    .portal-wrap { gap: 3rem; }
}
@media (max-width: 768px) {
    .vault-bg { width: 100%; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); }
    .vault { padding: 80px 0 100px; text-align: center; }
    .vault .cloak { justify-content: center; }
    .vault .echo { margin-left: auto; margin-right: auto; }
    .mesh { display: none; /* Simplification for mobile [role="navigation"] placeholder */ }
    .portal-wrap, .vault-veil, .vault-lens { flex-basis: 100%; }
    .nexus-grid { grid-template-columns: 1fr; }
    .tail-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
}

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