/* ================================================================== */
/*                                                                      */
/*    STARVORTEX WORK SECTION - ENHANCED v3.0                          */
/*    Neo-Militarist Street Futuristic Design                          */
/*                                                                      */
/* ================================================================== */

/* ================================================================== */
/* 1. FUENTES PERSONALIZADAS                                          */
/* ================================================================== */

@font-face { 
    font-family: 'SV-Tech'; 
    src: url('/src/starvortex_assets/tech.ttf') format('truetype'); 
}

@font-face { 
    font-family: 'SV-Hexaframe'; 
    src: url('/src/starvortex_assets/Hexaframe.woff') format('woff'), 
         url('/src/starvortex_assets/Hexaframe.otf') format('opentype'); 
}

@font-face { 
    font-family: 'SV-Sprintura'; 
    src: url('/src/starvortex_assets/sprintura.otf') format('truetype'); 
}


/* ================================================================== */
/* 2. NAVEGACIÓN WORK MODE                                            */
/* ================================================================== */

#mainNav.sv-work-mode { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 60px; 
    transform: none; 
    border-radius: 0; 
    backdrop-filter: blur(15px); 
    background: rgba(0, 0, 0, 0.819); 
    border: none; 
    border-bottom: 1px solid rgba(255,255,255,0.15); 
    padding: 0 25px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    z-index: 1000; 
}

/* Icon in navbar */
.sv-nav-icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
    opacity: 0;
    animation: sv-icon-flicker 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes sv-icon-flicker {
    0% { opacity: 0; }
    10% { opacity: 1; }
    15% { opacity: 0; }
    20% { opacity: 1; }
    30% { opacity: 0.3; }
    40% { opacity: 1; }
    50% { opacity: 0.5; }
    60% { opacity: 1; }
    80% { opacity: 0.8; }
    100% { opacity: 1; }
}

#mainNav.sv-work-mode .nav-menu.sv-nav-styled { 
    display: flex; 
    gap: 5px; 
    background: transparent; 
    padding: 0; 
    margin: 0 auto; 
}

#mainNav.sv-work-mode .nav-menu.sv-nav-styled .nav-item { 
    margin: 0; 
}

#mainNav.sv-work-mode .nav-menu.sv-nav-styled .nav-link { 
    font-family: 'SV-Tech', monospace; 
    font-size: 11px; 
    letter-spacing: 0.15em; 
    color: rgba(255,255,255,0.6); 
    padding: 8px 15px; 
    text-transform: uppercase; 
}

#mainNav.sv-work-mode .nav-menu.sv-nav-styled .nav-link:hover,
#mainNav.sv-work-mode .nav-menu.sv-nav-styled .nav-link.active { 
    color: white; 
}

#mainNav.sv-work-mode .nav-indicator-bg { 
    display: none; 
}

/* Back Button */
.sv-back-btn { 
    width: 40px; 
    height: 40px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 5px; 
    background: transparent; 
    border: 1px solid rgba(255,255,255,0.4); 
    border-radius: 6px; 
    cursor: pointer; 
    transition: all 0.2s; 
}

.sv-back-btn:hover { 
    border-color: rgba(255,255,255,0.8); 
    background: rgba(255,255,255,0.1); 
}

.sv-back-line { 
    display: block; 
    width: 16px; 
    height: 2px; 
    background: rgba(255,255,255,0.9); 
}

/* Mode Indicator */
.sv-mode-indicator { 
    display: flex; 
    align-items: center; 
    padding: 6px 14px; 
    border: 1px solid rgba(255,255,255,0.4); 
    border-radius: 4px; 
}

.sv-mode-txt { 
    font-family: 'SV-Tech', monospace; 
    font-size: 10px; 
    letter-spacing: 0.2em; 
    color: rgba(255,255,255,0.8); 
}

/* ================================================================== */
/* 3. PANTALLA PRINCIPAL WORK - GPU Optimized                         */
/* ================================================================== */

.sv-work-screen { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 200; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.5s ease-out, visibility 0.5s; 
    will-change: opacity;
    contain: layout style paint;
}

.sv-work-screen.active { 
    opacity: 1; 
    visibility: visible; 
}

/* ================================================================== */
/* 4. VERTICAL SCROLL NAVIGATION                                      */
/* ================================================================== */

.sv-scroll-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sv-scroll-nav-left {
    left: 20px;
    right: auto;
}

.sv-scroll-arrow {
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.sv-scroll-arrow:hover {
    opacity: 1;
    transform: scale(1.1);
}

.sv-scroll-arrow.inactive {
    opacity: 0.3;
    cursor: default;
}

.sv-scroll-arrow.down {
    transform: rotate(180deg);
}

.sv-scroll-arrow.down:hover {
    transform: rotate(180deg) scale(1.1);
}

.sv-scroll-arrow.down.inactive {
    transform: rotate(180deg);
}

/* Section indicators */
.sv-section-indicators {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
}

.sv-section-dot {
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sv-section-dot.active {
    background: white;
    border-color: white;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.sv-section-dot:hover {
    border-color: white;
}

/* Horizontal section number indicator */
.sv-section-number-display {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sv-section-num {
    font-family: 'SV-Hexaframe', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 5px 10px;
}

.sv-section-num.active {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.sv-section-num:hover {
    color: rgba(255,255,255,0.7);
}

.sv-section-divider {
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

/* ================================================================== */
/* 5. GRID OVERLAY - KPR Style                                        */
/* ================================================================== */

.sv-grid-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    pointer-events: none; 
    z-index: 1;
    will-change: auto;
}

.sv-grid-v, 
.sv-grid-h { 
    position: absolute; 
    background: rgba(255,255,255,0.08); 
}

.sv-grid-v { 
    width: 1px; 
    height: 100%; 
    top: 0; 
}

.sv-v1 { left: 5%; } 
.sv-v2 { left: 33.333%; } 
.sv-v3 { left: 66.666%; } 
.sv-v4 { right: 5%; }

.sv-grid-h { 
    width: 100%; 
    height: 1px; 
    left: 0; 
}

.sv-h1 { top: 60px; } 
.sv-h2 { top: 50%; } 
.sv-h3 { bottom: 5%; }

/* ================================================================== */
/* 6. CURSOR PERSONALIZADO - Optimized                                */
/* ================================================================== */

.sv-cursor { 
    position: fixed; 
    pointer-events: none; 
    z-index: 9999; 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    will-change: transform;
    contain: layout style;
}

.sv-cursor-inner { 
    position: relative; 
    width: 120px; 
    height: 120px; 
}

.sv-cursor-svg { 
    width: 100%; 
    height: 100%; 
}

.sv-cursor-ring { 
    transition: all 0.3s ease-out; 
}

.sv-cursor-progress { 
    transition: stroke-dashoffset 0.05s linear; 
}

.sv-cursor-arrow { 
    position: absolute; 
    font-size: 14px; 
    color: white; 
    transition: all 0.3s ease-out; 
    opacity: 0; 
}

.sv-arrow-left { 
    left: -5px; 
    top: 50%; 
    transform: translateY(-50%); 
}

.sv-arrow-right { 
    right: -5px; 
    top: 50%; 
    transform: translateY(-50%); 
}

.sv-cursor-hold-text { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    font-family: 'SV-Tech', monospace; 
    font-size: 12px; 
    letter-spacing: 0.15em; 
    color: white; 
    opacity: 0; 
    transition: opacity 0.2s; 
}

.sv-cursor-label { 
    font-family: 'SV-Tech', monospace; 
    font-size: 10px; 
    letter-spacing: 0.15em; 
    color: rgba(255,255,255,0.8); 
    margin-top: 10px; 
    opacity: 0; 
    transition: opacity 0.3s; 
    white-space: nowrap; 
}

/* Cursor States */
.sv-cursor.near-target .sv-cursor-arrow { 
    opacity: 1; 
}

.sv-cursor.near-target .sv-arrow-left { 
    left: 5px; 
}

.sv-cursor.near-target .sv-arrow-right { 
    right: 5px; 
}

.sv-cursor.near-target .sv-cursor-ring { 
    stroke: white; 
    stroke-width: 2; 
}

.sv-cursor.near-target .sv-cursor-label { 
    opacity: 1; 
}

.sv-cursor.near-target .sv-cursor-inner { 
    animation: sv-cursor-rotate 8s linear infinite; 
}

@keyframes sv-cursor-rotate { 
    from { transform: rotate(0deg); } 
    to { transform: rotate(360deg); } 
}

.sv-cursor.holding .sv-cursor-hold-text { 
    opacity: 1; 
}

.sv-cursor.holding .sv-cursor-label { 
    opacity: 0; 
}

.sv-cursor.holding .sv-cursor-inner { 
    animation: none; 
}

/* ================================================================== */
/* 7. SCROLL CONTAINER - Optimized                                    */
/* ================================================================== */

.sv-scroll { 
    position: absolute; 
    top: 60px; 
    left: 0; 
    width: 100%; 
    height: calc(100% - 60px); 
    overflow-y: auto; 
    overflow-x: hidden; 
    z-index: 10;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.sv-scroll::-webkit-scrollbar { 
    width: 3px; 
}

.sv-scroll::-webkit-scrollbar-track { 
    background: rgba(255,255,255,0.05); 
}

.sv-scroll::-webkit-scrollbar-thumb { 
    background: rgba(255,255,255,0.2); 
}

/* ================================================================== */
/* 8. SECCIONES GENERALES                                             */
/* ================================================================== */

.sv-section { 
    position: relative; 
    width: 100%; 
    padding: 40px 5%; 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; 
    border-bottom: 1px solid rgba(255,255,255,0.1);
    will-change: opacity, transform;
}

.sv-section.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* ================================================================== */
/* 9. HERO SECTION - ENHANCED                                         */
/* ================================================================== */

.sv-hero { 
    min-height: calc(100vh - 60px); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Fill bar background animation */
.sv-fill-bar-container {
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sv-fill-bar {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0.08;
    animation: sv-fill-bar-scroll 20s linear infinite;
    filter: brightness(0) invert(1);
}

.sv-fill-bar-2 {
    top: 60%;
    animation-delay: -10s;
    opacity: 0.05;
}

@keyframes sv-fill-bar-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(33.333%); }
}

/* Circle wrapper */
.sv-circle-wrap { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 50vmin; 
    height: 50vmin; 
    max-width: 500px; 
    max-height: 500px; 
    z-index: 1;
    will-change: auto;
}

.sv-circle-img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    filter: brightness(0) invert(1); 
    opacity: 1.05; 
}

/* Title container */
.sv-title-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Main title with flash effect - CENTERED */
.sv-title { 
    position: relative; 
    z-index: 5; /* MENOR z-index para que los ghosts estén encima */
    font-family: 'SV-Hexaframe', sans-serif; 
    font-size: clamp(50px, 14vw, 160px); 
    color: white; 
    letter-spacing: 0.02em; 
    margin: 0; 
    text-align: center; 
    min-height: 1.2em;
    opacity: 0;
    order: 2; /* Center position */
}

.sv-title.typing {
    opacity: 1;
    animation: sv-title-flash 0.15s ease-in-out 3;
}

@keyframes sv-title-flash {
    0%, 100% { opacity: 1; text-shadow: 0 0 20px rgba(255,255,255,0.5); }
    50% { opacity: 0.3; text-shadow: none; }
}

/* Ghost/outline text copies - ENHANCED GLITCH */
.sv-title-ghost {
    position: absolute;
    font-family: 'SV-Hexaframe', sans-serif;
    font-size: clamp(50px, 14vw, 160px);
    letter-spacing: 0.02em;
    color: transparent;
    /* Stroke MÁS GRUESO y BRILLANTE */
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.46);
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-play-state: paused;
    z-index: 15; /* ENCIMA del texto normal */
}

.sv-title-ghost-1 {
    top: -60px;
    order: 1;
    animation: sv-glitch-top 2s infinite; /* Más rápido */
}

.sv-title-ghost-2 {
    bottom: -60px;
    order: 3;
    animation: sv-glitch-bottom 2s infinite; /* Más rápido */
    animation-delay: 1s;
}

.sv-title-ghost-3 {
    display: none;
}

/* GLITCH TOP - MÁS INTENSO CON PARPADEO */
@keyframes sv-glitch-top {
    0% { 
        opacity: 0; 
        transform: translateX(-50%) translateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    /* Parpadeo rápido inicial */
    1% {
        opacity: 1;
        transform: translateX(calc(-50% - 12px)) translateY(0);
    }
    2% {
        opacity: 0;
    }
    3% {
        opacity: 1;
        transform: translateX(calc(-50% + 8px)) translateY(0);
    }
    
    /* Glitch visible con clip-path */
    5%, 12% {
        opacity: 0.9;
        transform: translateX(calc(-50% - 10px)) translateY(2px);
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    }
    
    14% {
        opacity: 0;
    }
    
    /* Segundo glitch */
    20%, 27% {
        opacity: 0.95;
        transform: translateX(calc(-50% + 15px)) translateY(-2px);
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    }
    
    /* Parpadeo medio */
    30% {
        opacity: 1;
    }
    31% {
        opacity: 0;
    }
    32% {
        opacity: 1;
    }
    33% {
        opacity: 0;
    }
    
    /* Glitch final */
    40%, 45% {
        opacity: 0.85;
        transform: translateX(calc(-50% - 8px)) translateY(1px);
        clip-path: polygon(0 20%, 100% 20%, 100% 80%, 0 80%);
    }
    
    50%, 100% {
        opacity: 0;
    }
}

/* GLITCH BOTTOM - MÁS INTENSO CON PARPADEO */
@keyframes sv-glitch-bottom {
    0% { 
        opacity: 0; 
        transform: translateX(-50%) translateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    /* Parpadeo inicial */
    2% {
        opacity: 0;
    }
    3% {
        opacity: 1;
        transform: translateX(calc(-50% + 10px)) translateY(0);
    }
    4% {
        opacity: 0;
    }
    
    /* Glitch visible */
    8%, 15% {
        opacity: 0.95;
        transform: translateX(calc(-50% + 12px)) translateY(-2px);
        clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    }
    
    17% {
        opacity: 0;
    }
    
    /* Segundo glitch */
    25%, 32% {
        opacity: 0.9;
        transform: translateX(calc(-50% - 14px)) translateY(2px);
        clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
    }
    
    /* Parpadeo rápido */
    35% {
        opacity: 1;
        transform: translateX(calc(-50% + 5px)) translateY(0);
    }
    36% {
        opacity: 0;
    }
    37% {
        opacity: 1;
        transform: translateX(calc(-50% - 5px)) translateY(0);
    }
    38% {
        opacity: 0;
    }
    
    /* Glitch final más largo */
    45%, 52% {
        opacity: 0.88;
        transform: translateX(calc(-50% + 9px)) translateY(-1px);
        clip-path: polygon(0 30%, 100% 30%, 100% 70%, 0 70%);
    }
    
    55%, 100% {
        opacity: 0;
    }
}

.sv-tagline { 
    position: relative; 
    z-index: 10; 
    font-family: 'SV-Tech', monospace; 
    font-size: 13px; 
    letter-spacing: 0.3em; 
    color: rgba(255,255,255,0.7); 
    text-transform: uppercase; 
    margin: 15px 0 0 0; 
    text-align: center; 
}

.sv-label { 
    position: absolute; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-family: 'SV-Tech', monospace; 
    font-size: 10px; 
    letter-spacing: 0.2em; 
    color: rgba(255,255,255,0.7); 
    text-transform: uppercase; 
    z-index: 10; 
}

.sv-label-l { 
    top: 100px; 
    left: 5%; 
}

.sv-label-r { 
    top: 100px; 
    right: 5%; 
}

.sv-dot { 
    font-size: 7px; 
    color: white; 
}

.sv-hero-desc { 
    position: absolute; 
    bottom: 80px; 
    left: 5%; 
    max-width: 450px; 
    z-index: 10; 
}

.sv-hero-desc p { 
    font-family: 'SV-Tech', monospace; 
    font-size: 11px; 
    line-height: 1.8; 
    color: rgba(255,255,255,0.7); 
    letter-spacing: 0.05em; 
    text-transform: uppercase; 
    margin: 0; 
}

.sv-marker { 
    position: absolute; 
    bottom: 40px; 
    left: 5%; 
    font-family: 'SV-Tech', monospace; 
    font-size: 12px; 
    letter-spacing: 0.3em; 
    color: rgba(255,255,255,0.4); 
    z-index: 10; 
}

/* ================================================================== */
/* 10. DECORATIVE ARROWS                                              */
/* ================================================================== */

.sv-arrow-decor {
    position: absolute;
    width: 20px;
    height: auto;
    opacity: 0.4;
    filter: brightness(0) invert(1);
    pointer-events: none;
    z-index: 5;
}

.sv-arrow-decor-tl {
    top: 120px;
    left: 8%;
    transform: rotate(-45deg);
}

.sv-arrow-decor-tr {
    top: 120px;
    right: 8%;
    transform: rotate(45deg) scaleX(-1);
}

.sv-arrow-decor-bl {
    bottom: 120px;
    left: 8%;
    transform: rotate(-135deg);
}

.sv-arrow-decor-br {
    bottom: 120px;
    right: 8%;
    transform: rotate(135deg) scaleX(-1);
}

/* Expand more info button */
.sv-expand-btn {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    overflow: hidden;
}

.sv-expand-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}

.sv-expand-btn img {
    width: 20px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.sv-expand-btn.expanded img {
    transform: rotate(180deg);
}

/* Expandable info panel */
.sv-expandable-panel {
    position: fixed;
    top: 60px;
    right: -400px;
    width: 380px;
    height: calc(100% - 60px);
    background: rgba(0, 0, 0, 0.95);
    border-left: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    z-index: 90;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 30px;
}
.sv-expandable-panel::-webkit-scrollbar { 
    display: none; 
}

.sv-expandable-panel.open {
    right: 0;
}

.sv-expandable-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sv-expandable-panel-header span {
    font-family: 'SV-Tech', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.sv-expandable-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sv-info-block {
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
}

.sv-info-block-title {
    font-family: 'SV-Hexaframe', sans-serif;
    font-size: 16px;
    color: white;
    margin: 0 0 10px 0;
}

.sv-info-block-text {
    font-family: 'SV-Tech', monospace;
    font-size: 10px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.sv-info-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.sv-info-stat {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
}

.sv-info-stat-value {
    font-family: 'SV-Hexaframe', sans-serif;
    font-size: 24px;
    color: white;
    display: block;
}

.sv-info-stat-label {
    font-family: 'SV-Tech', monospace;
    font-size: 8px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

/* ================================================================== */
/* 11. BANNER DECORATION                                              */
/* ================================================================== */

.sv-banner-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0.1;
    filter: brightness(0) invert(1);
    pointer-events: none;
}

/* Logo behind fill decoration */
.sv-logo-behind {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    opacity: 0.10;
    filter: brightness(0) invert(1);
    pointer-events: none;
    z-index: 0;
}

/* ================================================================== */
/* REST OF CSS - SECTIONS, PANELS, ETC.                               */
/* (Keeping all existing styles from work.css)                        */
/* ================================================================== */

/* ================================================================== */
/* 12. SCAN SECTIONS                                                   */
/* ================================================================== */

.sv-scan-section { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 80px 5%; 
}

.sv-scan-area { 
    position: relative; 
    width: 100%; 
    max-width: 1400px; 
    min-height: 1200px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
}

.sv-scan-title { 
    font-family: 'SV-Hexaframe', sans-serif; 
    font-size: clamp(50px, 10vw, 120px); 
    color: white; 
    margin: 0; 
    text-align: center; 
    cursor: none; 
    transition: text-shadow 0.3s ease-out; 
}

.sv-scan-title:hover { 
    text-shadow: 0 0 40px rgba(255,255,255,0.3); 
}

.sv-scan-subtitle { 
    font-family: 'SV-Tech', monospace; 
    font-size: 12px; 
    letter-spacing: 0.3em; 
    color: rgba(255,255,255,0.5); 
    text-transform: uppercase; 
    margin: 15px 0 0 0; 
}

/* Scan Assets - Data Visualizations */
.sv-scan-asset { 
    position: absolute; 
    opacity: 0; 
    transform: scale(0.8); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
    pointer-events: none; 
    z-index: 5;
    will-change: opacity, transform;
}

.sv-scan-asset.visible { 
    opacity: 1; 
    transform: scale(1); 
}

/* Asset Positions - SKYE */
.sv-asset-geo { 
    width: 140px; 
    left: 38%; 
    top: 8%; 
}

.sv-asset-distance { 
    width: 160px; 
    right: 35%; 
    bottom: 12%; 
}

.sv-asset-scans { 
    width: 120px; 
    left: 35%; 
    bottom: 8%; 
}

.sv-asset-skye-data { 
    width: 400px; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%) scale(0.8); 
}

.sv-asset-skye-data.visible { 
    transform: translate(-50%, -50%) scale(1); 
}

/* Asset Positions - PROJECTS */
.sv-asset-geo-proj { 
    width: 120px; 
    left: 40%; 
    top: 12%; 
}

.sv-asset-scans-proj { 
    width: 100px; 
    right: 38%; 
    bottom: 15%; 
}

/* Asset Positions - VISIONS */
.sv-asset-geo-visions { 
    width: 130px; 
    left: 36%; 
    top: 10%; 
}

.sv-asset-distance-visions { 
    width: 150px; 
    right: 37%; 
    bottom: 10%; 
}

/* Dot Pattern Background */
.sv-dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-out;
    pointer-events: none;
    z-index: 1;
    background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 30px 30px;
}

.sv-dot-pattern.visible { 
    opacity: 1; 
}

/* ================================================================== */
/* 13. SCAN PANELS - Base Styles                                      */
/* ================================================================== */

.sv-scan-panel { 
    position: absolute; 
    opacity: 0; 
    transform: scale(0.9) translateY(20px); 
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), 
                transform 0.6s cubic-bezier(0.4,0,0.2,1); 
    pointer-events: none; 
    z-index: 10;
    will-change: opacity, transform;
    contain: layout style;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    overflow: hidden;
}

.sv-scan-panel.revealed { 
    opacity: 1; 
    transform: scale(1) translateY(0); 
    pointer-events: auto; 
}

.sv-panel-content { 
    position: relative; 
    padding: 20px 24px; 
    z-index: 1; 
    background: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    height: 100%; 
}

.sv-panel-header { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 12px; 
    font-family: 'SV-Tech', monospace; 
    font-size: 10px; 
    letter-spacing: 0.2em; 
    color: rgba(255,255,255,0.7); 
    text-transform: uppercase; 
}

.sv-panel-dot { 
    color: white; 
    font-size: 8px; 
}

.sv-panel-plus { 
    margin-left: auto; 
    font-size: 14px; 
    color: rgba(255,255,255,0.5); 
}

.sv-panel-status { 
    margin-left: auto; 
    padding: 3px 10px; 
    background: rgba(255,255,255,0.15); 
    border-radius: 2px; 
    font-size: 9px; 
}

.sv-status-dev { 
    background: rgba(255,200,0,0.2); 
    color: rgba(255,200,0,0.9); 
}

/* ================================================================== */
/* 14. PANEL POSITIONS - SKYE Section                                 */
/* ================================================================== */

/* Row 1: Identity and Biometrics */
.sv-panel-tl { 
    top: 5%; 
    left: 3%; 
    width: 280px; 
    min-height: 200px; 
}

.sv-panel-tr { 
    top: 5%; 
    right: 3%; 
    width: 280px; 
    min-height: 260px; 
}

/* Row 2: Skills and Tech Stack */
.sv-panel-left { 
    top: 28%; 
    left: 3%; 
    width: 300px; 
    min-height: 320px; 
}

.sv-panel-right { 
    top: 28%; 
    right: 3%; 
    width: 280px; 
    min-height: 200px; 
}

/* Row 3: Member Profile (Center) */
.sv-panel-skye-profile {
    top: 2%;
    left: 50%;
    transform: translateX(-50%) scale(0.9) translateY(20px);
    width: 480px;
    max-width: 90%;
    min-height: 380px;
    z-index: 15;
}

.sv-panel-skye-profile.revealed {
    transform: translateX(-50%) scale(1) translateY(0);
}

/* Row 4: Bio/Profile Description */
.sv-panel-br {
    top: 75%;
    left: 50%;
    transform: translateX(-50%) scale(0.9) translateY(20px);
    width: 480px;
    max-width: 90%;
    min-height: 380px;
}

.sv-panel-br.revealed {
    transform: translateX(-50%) scale(1) translateY(0);
}

/* Row 5: Additional Data Panels */
.sv-panel-skill-radar {
    top: 60%;
    left: 3%;
    width: 280px;
    min-height: 280px;
}

.sv-panel-analysis-report {
    top: 56%;
    right: 3%;
    width: 320px;
    min-height: 240px;
}

.sv-panel-signal-wave { 
    top: 700px; 
}

/* ================================================================== */
/* 15. PANEL POSITIONS - PROJECTS Section                             */
/* ================================================================== */

.sv-panel-project-1 { 
    top: 5%; 
    left: 3%; 
    width: 460px; 
    min-height: 280px; 
}

.sv-panel-project-2 { 
    top: 5%; 
    right: 3%; 
    width: 480px; 
    min-height: 520px; 
}

.sv-panel-project-stats { 
    bottom: 8%; 
    left: 50%; 
    transform: translateX(-50%) scale(0.9) translateY(20px); 
    width: 300px; 
    min-height: 120px; 
}

.sv-panel-project-stats.revealed { 
    transform: translateX(-50%) scale(1) translateY(0); 
}

.sv-panel-project-progress { 
    left: -20px; 
}

.sv-panel-project-timeline { 
    right: -20px; 
    bottom: 150px;
}

/* ================================================================== */
/* 16. PANEL CONTENT STYLES                                           */
/* ================================================================== */

/* Grid Layout */
.sv-panel-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 8px; 
}

.sv-panel-data { 
    display: flex; 
    flex-direction: column; 
    gap: 2px; 
}

.sv-data-label { 
    font-family: 'SV-Tech', monospace; 
    font-size: 9px; 
    color: rgba(255,255,255,0.4); 
    letter-spacing: 0.1em; 
    text-transform: uppercase; 
}

.sv-data-value { 
    font-family: 'SV-Tech', monospace; 
    font-size: 11px; 
    color: white; 
    letter-spacing: 0.12em; 
}

/* Biometrics List */
.sv-bio-list { 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
}

.sv-bio-row { 
    display: flex; 
    justify-content: space-between; 
    font-family: 'SV-Tech', monospace; 
    font-size: 10px; 
    text-transform: uppercase; 
}

.sv-bio-row span:first-child { 
    color: rgba(255,255,255,0.4); 
    letter-spacing: 0.1em; 
}

.sv-bio-row span:last-child { 
    color: white; 
    letter-spacing: 0.12em; 
}

/* Tech List */
.sv-tech-list { 
    display: flex; 
    flex-direction: column; 
    gap: 5px; 
    font-family: 'SV-Tech', monospace; 
    font-size: 10px; 
    color: rgba(255,255,255,0.7); 
    letter-spacing: 0.08em; 
    text-transform: uppercase; 
}

/* Skills */
.sv-panel-skills { 
    margin: 8px 0; 
}

.sv-skill-item { 
    margin-bottom: 10px; 
}

.sv-skill-row { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 4px; 
}

.sv-skill-name { 
    font-family: 'SV-Tech', monospace; 
    font-size: 10px; 
    letter-spacing: 0.12em; 
    color: rgba(255,255,255,0.8); 
    text-transform: uppercase; 
}

.sv-skill-pct { 
    font-family: 'SV-Tech', monospace; 
    font-size: 10px; 
    color: rgba(255,255,255,0.5); 
}

.sv-skill-bar { 
    width: 100%; 
    height: 3px; 
    background: rgba(255, 255, 255, 0.501); 
    position: relative; 
    overflow: hidden; 
}

.sv-skill-fill { 
    position: absolute; 
    top: 0; 
    left: 0; 
    height: 100%; 
    width: 0; 
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.764), white); 
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
    will-change: width;
}

.sv-skill-fill.animate { 
    width: var(--fill); 
}

/* Extra Info & Bio */
.sv-panel-extra { 
    margin-top: 12px; 
    font-family: 'SV-Tech', monospace; 
    font-size: 9px; 
    letter-spacing: 0.1em; 
    color: rgba(255,255,255,0.4); 
    text-transform: uppercase; 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
}

.sv-panel-bio { 
    font-family: 'SV-Tech', monospace; 
    font-size: 10px; 
    line-height: 1.8; 
    letter-spacing: 0.05em; 
    color: rgba(255,255,255,0.7); 
    text-transform: uppercase; 
    margin: 0; 
}

/* ================================================================== */
/* 17. PROJECT PANELS                                                 */
/* ================================================================== */

.sv-project-title { 
    font-family: 'SV-Hexaframe', sans-serif; 
    font-size: 26px; 
    color: white; 
    margin: 0 0 8px 0; 
}

.sv-project-subtitle {
    font-family: 'SV-Tech', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.15em;
    margin: -5px 0 12px 0;
    text-transform: uppercase;
}

.sv-project-meta { 
    display: flex; 
    flex-direction: column; 
    gap: 3px; 
    margin-bottom: 10px; 
    font-family: 'SV-Tech', monospace; 
    font-size: 9px; 
    color: rgba(255,255,255,0.5); 
    letter-spacing: 0.1em; 
    text-transform: uppercase; 
}

.sv-project-desc { 
    font-family: 'SV-Tech', monospace; 
    font-size: 10px; 
    line-height: 1.7; 
    letter-spacing: 0.04em; 
    color: rgba(255,255,255,0.7); 
    text-transform: uppercase; 
    margin: 0 0 10px 0; 
}

.sv-project-desc-long { 
    font-size: 9px; 
    line-height: 1.6; 
}

.sv-project-warning { 
    display: flex; 
    align-items: flex-start; 
    gap: 8px; 
    padding: 8px 10px; 
    background: rgba(255,100,100,0.1); 
    border-left: 2px solid rgba(255,100,100,0.5); 
    margin-bottom: 10px; 
}

.sv-warning-icon { 
    color: rgba(255,100,100,0.8); 
    font-size: 12px; 
}

.sv-project-warning span:last-child { 
    font-family: 'SV-Tech', monospace; 
    font-size: 9px; 
    color: rgba(255,100,100,0.8); 
    letter-spacing: 0.05em; 
    text-transform: uppercase; 
}

.sv-project-note { 
    font-family: 'SV-Tech', monospace; 
    font-size: 9px; 
    line-height: 1.6; 
    letter-spacing: 0.04em; 
    color: rgba(255,255,255,0.5); 
    text-transform: uppercase; 
    margin: 0 0 12px 0; 
    font-style: italic; 
}

.sv-project-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    padding: 8px 16px; 
    background: rgba(255,255,255,0.1); 
    border: 1px solid rgba(255,255,255,0.3); 
    font-family: 'SV-Tech', monospace; 
    font-size: 10px; 
    color: white; 
    text-decoration: none; 
    letter-spacing: 0.15em; 
    text-transform: uppercase; 
    transition: all 0.2s ease-out; 
    margin-bottom: 12px; 
}

.sv-project-link:hover { 
    background: rgba(255,255,255,0.2); 
    border-color: rgba(255,255,255,0.5); 
}

.sv-project-tags { 
    display: flex; 
    gap: 8px; 
    flex-wrap: wrap; 
}

.sv-project-tags span { 
    font-family: 'SV-Tech', monospace; 
    font-size: 9px; 
    color: rgba(255,255,255,0.5); 
    letter-spacing: 0.1em; 
    padding: 3px 8px; 
    border: 1px solid rgba(255,255,255,0.2); 
    border-radius: 2px; 
}

/* Stats Grid */
.sv-stats-grid { 
    display: flex; 
    gap: 30px; 
    margin-top: 8px; 
}

.sv-stat { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.sv-stat-value { 
    font-family: 'SV-Hexaframe', sans-serif; 
    font-size: 30px; 
    color: white; 
}

.sv-stat-label { 
    font-family: 'SV-Tech', monospace; 
    font-size: 9px; 
    color: rgba(255,255,255,0.5); 
    letter-spacing: 0.15em; 
    text-transform: uppercase; 
    margin-top: 4px; 
}

/* ================================================================== */
/* 18. KPR-INSPIRED GRID SECTION                                      */
/* ================================================================== */

.sv-grid-section { 
    min-height: auto; 
    padding: 0; 
    border-bottom: none;
}

.sv-content-grid { 
    display: grid; 
    gap: 0; 
    width: 100%;
    background: transparent;
}

.sv-grid-3col { 
    grid-template-columns: 1fr 1fr 1fr; 
}

.sv-box { 
    background: transparent; 
    padding: 45px 40px;
    position: relative; 
    overflow: hidden;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.4s ease-out;
}

.sv-box:nth-child(3n) {
    border-right: none;
}

.sv-box:hover {
    background: rgba(255,255,255,0.02);
}

/* Video Boxes */
.sv-box-vid { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 320px;
    background: rgba(0,0,0,0.2);
}

/* Info/Content Boxes */
.sv-box-info, 
.sv-box-div { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    min-height: 320px;
    padding: 60px 50px;
}

/* Box Header */
.sv-box-header { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 20px; 
}

.sv-ch { 
    font-family: 'SV-Tech', monospace; 
    font-size: 11px; 
    letter-spacing: 0.25em; 
    color: rgba(255,255,255,0.5); 
    text-transform: uppercase; 
}

/* Box Title */
.sv-box-title { 
    font-family: 'SV-Hexaframe', sans-serif; 
    font-size: clamp(32px, 5vw, 50px); 
    color: white; 
    margin: 0 0 20px 0;
    line-height: 1.1;
    font-weight: 400;
}

/* Box Subtitle */
.sv-box-subtitle { 
    font-family: 'SV-Hexaframe', sans-serif; 
    font-size: clamp(22px, 3vw, 28px); 
    color: white; 
    margin: 0 0 16px 0;
    line-height: 1.2;
}

/* Box Text */
.sv-box-text { 
    font-family: 'SV-Tech', monospace; 
    font-size: 12px; 
    line-height: 1.8; 
    color: rgba(255,255,255,0.7); 
    letter-spacing: 0.03em; 
    text-transform: none;
    margin: 0; 
    max-width: 520px;
}

/* Decorative Video */
.sv-deco-vid { 
    width: 60%; 
    max-width: 180px; 
    opacity: 0.5;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.sv-box-vid:hover .sv-deco-vid {
    opacity: 0.7;
    transform: scale(1.05);
}

/* SVG Content */
.sv-panel-svg-content {
    padding: 16px 20px;
}

.sv-data-svg {
    width: 100%;
    height: auto;
    display: block;
}

.sv-member-profile-svg {
    width: 100%;
    max-width: 420px;
}

/* ================================================================== */
/* 19. MEMBERS SECTION                                                */
/* ================================================================== */

.sv-members-section {
    min-height: 100vh;
    padding: 80px 5% 60px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sv-members-header {
    text-align: center;
    margin-bottom: 50px;
}

.sv-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'SV-Tech', monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sv-members-title {
    font-family: 'SV-Hexaframe', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    color: white;
    margin: 0 0 15px 0;
    letter-spacing: 0.05em;
}

.sv-members-subtitle {
    font-family: 'SV-Tech', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin: 0;
}

/* Members Grid */
.sv-members-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(380px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 50px;
}

/* Member Card */
.sv-member-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sv-member-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Member Scan Frame */
.sv-member-scan-frame {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
}

.sv-member-scan-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================================== */
/* 20. DATA PANELS                                                    */
/* ================================================================== */

.sv-data-panels {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 600px;
    justify-content: center;
}

.sv-data-panel {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.sv-data-panel.revealed {
    opacity: 1;
    transform: translateY(0);
}

.sv-data-panel svg {
    width: 100%;
    height: auto;
}

/* ================================================================== */
/* 21. SCAN EFFECTS                                                   */
/* ================================================================== */

.sv-scan-active {
    position: relative;
    overflow: hidden;
}

.sv-scan-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(134, 213, 255, 0.216), 
        rgba(153, 122, 255, 0.5), 
        rgba(237, 146, 255, 0.3), 
        rgba(134, 142, 255, 0.216), 
        rgba(255, 122, 162, 0.5), 
        rgba(146, 255, 239, 0.3),
        transparent);
    animation: scan-sweep 2s linear infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes scan-sweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

.sv-scan-completed {
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none !important;
}

/* ================================================================== */
/* 22. DATA ANIMATIONS                                                */
/* ================================================================== */

.sv-data-animate {
    opacity: 0;
    transform: translateY(10px);
    animation: svDataFadeIn 0.6s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

.sv-scan-panel.revealed .sv-data-animate {
    animation-play-state: running;
}

@keyframes svDataFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Radar Animation */
.sv-radar-animate {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sv-scan-panel.revealed .sv-radar-animate {
    opacity: 1;
    transform: scale(1);
}

/* Waveform Animation */
.sv-waveform-animate {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: svWaveformDraw 2s ease-out forwards;
    animation-delay: 0.3s;
}

.sv-scan-panel.revealed .sv-waveform-animate {
    animation-play-state: running;
}

@keyframes svWaveformDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* ================================================================== */
/* 23. VISIONS SECTION                                                */
/* ================================================================== */

/* Vortex Container */
.sv-vortex-container {
    position: absolute;
    top: 5%;
    left: 3%;
    width: 380px;
    height: 380px;
    z-index: 10;
}

.sv-vortex-logo {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

/* Panel Positions - VISIONS */
.sv-panel-manifesto {
    top: 5%;
    right: 3%;
    left: auto;
    transform: scale(0.9) translateY(20px);
    width: 550px;
    max-width: 50%;
    min-height: 400px;
}

.sv-panel-manifesto.revealed {
    transform: scale(1) translateY(0);
}

.sv-panel-values {
    top: 55%;
    left: 3%;
    width: 320px;
    min-height: 220px;
}

.sv-panel-philosophy-data {
    top: 55%;
    right: 3%;
    width: 320px;
    min-height: 220px;
}

/* ================================================================== */
/* 24. VORTEX LOGO ANIMATIONS                                         */
/* ================================================================== */

/* Ring Animation */
.sv-vortex-ring {
    transform-origin: 500px 500px;
    opacity: 0;
}

.sv-vortex-container.revealed .sv-vortex-ring {
    animation: sv-ring-appear 1.5s ease-out forwards, 
               sv-ring-spin 8s linear 1.5s infinite;
}

@keyframes sv-ring-appear {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-360deg);
    }
    60% {
        opacity: 0.9;
        transform: scale(1.1) rotate(-30deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes sv-ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Ring Segments */
.sv-ring-segment {
    opacity: 0;
    transform-origin: 500px 500px;
}

.sv-vortex-container.revealed .sv-seg-1 { animation: sv-segment-fade 0.2s ease-out 0.05s forwards; }
.sv-vortex-container.revealed .sv-seg-2 { animation: sv-segment-fade 0.2s ease-out 0.1s forwards; }
.sv-vortex-container.revealed .sv-seg-3 { animation: sv-segment-fade 0.2s ease-out 0.15s forwards; }
.sv-vortex-container.revealed .sv-seg-4 { animation: sv-segment-fade 0.2s ease-out 0.2s forwards; }
.sv-vortex-container.revealed .sv-seg-5 { animation: sv-segment-fade 0.2s ease-out 0.25s forwards; }
.sv-vortex-container.revealed .sv-seg-6 { animation: sv-segment-fade 0.2s ease-out 0.3s forwards; }
.sv-vortex-container.revealed .sv-seg-7 { animation: sv-segment-fade 0.2s ease-out 0.35s forwards; }
.sv-vortex-container.revealed .sv-seg-8 { animation: sv-segment-fade 0.2s ease-out 0.4s forwards; }
.sv-vortex-container.revealed .sv-seg-9 { animation: sv-segment-fade 0.2s ease-out 0.45s forwards; }
.sv-vortex-container.revealed .sv-seg-10 { animation: sv-segment-fade 0.2s ease-out 0.5s forwards; }
.sv-vortex-container.revealed .sv-seg-11 { animation: sv-segment-fade 0.2s ease-out 0.55s forwards; }
.sv-vortex-container.revealed .sv-seg-12 { animation: sv-segment-fade 0.2s ease-out 0.6s forwards; }

@keyframes sv-segment-fade {
    to { opacity: 1; }
}

/* Core Animation */
.sv-vortex-core {
    opacity: 0;
    transform-origin: 500px 500px;
}

.sv-vortex-container.revealed .sv-vortex-core {
    animation: sv-core-appear 0.8s ease-out 0.8s forwards,
               sv-core-pulse 2s ease-in-out 1.6s infinite;
}

@keyframes sv-core-appear {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes sv-core-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
    }
    50% {
        opacity: 0.9;
        transform: scale(1.08);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
    }
}

/* Horizontal Bar Animation */
.sv-vortex-bar {
    opacity: 0;
}

.sv-vortex-bar ellipse {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 2;
}

.sv-vortex-container.revealed .sv-vortex-bar {
    animation: sv-bar-fade 0.15s ease-out 1.2s forwards;
}

.sv-vortex-container.revealed .sv-vortex-bar ellipse {
    animation: sv-bar-draw 1s ease-out 1.2s forwards,
               sv-bar-glow 1.5s ease-in-out 2.2s infinite;
}

@keyframes sv-bar-fade {
    to { opacity: 1; }
}

@keyframes sv-bar-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes sv-bar-glow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
    }
}

/* ================================================================== */
/* 25. MANIFESTO & VALUES                                             */
/* ================================================================== */

.sv-manifesto-headline {
    font-family: 'SV-Hexaframe', sans-serif;
    font-size: 20px;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.sv-manifesto-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sv-manifesto-text p {
    font-family: 'SV-Tech', monospace;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    margin: 0;
}

.sv-manifesto-final {
    font-size: 12px !important;
    color: white !important;
    font-weight: bold;
    letter-spacing: 0.08em !important;
    margin-top: 8px !important;
}

/* Values Grid */
.sv-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 12px;
}

.sv-value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
    transition: all 0.3s ease-out;
}

.sv-value-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
}

.sv-value-icon {
    font-size: 24px;
    color: white;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.sv-scan-panel.revealed .sv-value-icon {
    opacity: 1;
    transform: scale(1);
}

.sv-value-label {
    font-family: 'SV-Tech', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    text-align: center;
}

/* ================================================================== */
/* 26. RESPONSIVE BREAKPOINTS                                         */
/* ================================================================== */

/* Extra Large Screens (1200px and below) */
@media (max-width: 1200px) {
    .sv-scan-area {
        min-height: 1000px;
    }
    
    .sv-panel-tl, 
    .sv-panel-tr, 
    .sv-panel-left, 
    .sv-panel-right, 
    .sv-panel-br,
    .sv-panel-skye-profile, 
    .sv-panel-skill-radar, 
    .sv-panel-analysis-report { 
        position: relative; 
        top: auto; 
        left: auto; 
        right: auto; 
        bottom: auto; 
        width: 100%; 
        max-width: 480px; 
        margin: 15px auto; 
        height: auto; 
        min-height: auto; 
        transform: none !important;
    }
    
    .sv-panel-project-1, 
    .sv-panel-project-2 { 
        position: relative; 
        top: auto; 
        left: auto; 
        right: auto; 
        width: 100%; 
        max-width: 500px; 
        margin: 15px auto; 
        height: auto; 
    }
    
    .sv-panel-project-stats { 
        position: relative; 
        left: auto; 
        transform: none; 
        margin: 15px auto; 
        max-width: 320px; 
    }
    
    .sv-scan-asset { 
        display: none; 
    }
    
    .sv-dot-pattern { 
        display: none; 
    }
    
    .sv-box-info, 
    .sv-box-div {
        padding: 50px 35px;
    }
    
    /* Visions responsive */
    .sv-vortex-container {
        position: relative;
        top: auto;
        left: auto;
        width: 300px;
        height: 300px;
        margin: 20px auto;
    }
    
    .sv-panel-manifesto,
    .sv-panel-values,
    .sv-panel-philosophy-data {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 550px;
        margin: 15px auto;
        transform: none !important;
    }
    
    /* Members grid responsive */
    .sv-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 900px;
    }
    
    /* Hide scroll nav on smaller screens */
    .sv-scroll-nav {
        display: none;
    }
    
    .sv-section-number-display {
        display: none;
    }
    
    .sv-expand-btn {
        display: none;
    }
    
    .sv-expandable-panel {
        display: none;
    }
}

/* Large Screens (1024px and below) */
@media (max-width: 1024px) {
    .sv-grid-3col { 
        grid-template-columns: 1fr; 
    }
    
    .sv-box {
        border-right: none;
        padding: 40px 30px;
    }
    
    .sv-box-vid, 
    .sv-box-info, 
    .sv-box-div { 
        min-height: 300px; 
    }
    
    .sv-members-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .sv-data-panels {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Medium Screens (900px and below) */
@media (max-width: 900px) {
    .sv-members-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    #mainNav.sv-work-mode .nav-menu.sv-nav-styled { 
        display: none; 
    }
    
    .sv-mode-indicator { 
        display: none; 
    }
    
    .sv-label-l, 
    .sv-label-r { 
        display: none; 
    }
    
    .sv-hero-desc { 
        position: relative; 
        bottom: auto; 
        left: auto; 
        max-width: 100%; 
        margin-top: 30px; 
        text-align: center; 
    }
    
    .sv-title { 
        font-size: clamp(36px, 12vw, 80px); 
    }
    
    .sv-title-ghost {
        font-size: clamp(36px, 12vw, 80px);
    }
    
    .sv-cursor { 
        display: none; 
    }
    
    .sv-work-screen { 
        cursor: auto !important; 
    }
    
    .sv-scan-title { 
        font-size: clamp(36px, 10vw, 70px); 
    }
    
    .sv-box { 
        padding: 35px 20px; 
    }
    
    .sv-box-info, 
    .sv-box-div { 
        padding: 40px 25px;
        min-height: 280px; 
    }
    
    .sv-box-vid { 
        min-height: 220px; 
    }
    
    .sv-box-title { 
        font-size: clamp(28px, 8vw, 40px); 
    }
    
    .sv-box-text { 
        font-size: 11px; 
        line-height: 1.8; 
    }
    
    .sv-scan-panel { 
        opacity: 1 !important; 
        transform: none !important; 
        pointer-events: auto; 
    }
    
    .sv-members-section {
        padding: 60px 4% 40px 4%;
    }
    
    .sv-members-title {
        font-size: clamp(32px, 10vw, 50px);
    }
    
    .sv-member-card {
        opacity: 1;
        transform: none;
    }
    
    .sv-data-panel {
        opacity: 1;
        transform: none;
    }
    
    /* Visions responsive */
    .sv-vortex-container {
        width: 250px;
        height: 250px;
    }
    
    .sv-values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .sv-manifesto-headline {
        font-size: 16px;
    }
    
    .sv-manifesto-text p {
        font-size: 10px;
        line-height: 1.7;
    }
    
    .sv-fill-bar-container {
        display: none;
    }
    
    .sv-arrow-decor {
        display: none;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .sv-section { 
        padding: 25px 4%; 
    }
    
    .sv-title { 
        font-size: clamp(28px, 10vw, 60px); 
    }
    
    .sv-title-ghost {
        display: none;
    }
    
    .sv-project-title { 
        font-size: 20px; 
    }
    
    .sv-box { 
        padding: 25px 15px; 
    }
    
    .sv-box-info, 
    .sv-box-div { 
        padding: 30px 20px; 
    }
    
    .sv-box-title { 
        font-size: clamp(24px, 7vw, 32px); 
    }
    
    .sv-box-subtitle { 
        font-size: clamp(18px, 5vw, 24px); 
    }
    
    .sv-members-grid {
        gap: 15px;
    }
    
    .sv-member-scan-frame {
        overflow-x: auto;
    }
    
    .sv-member-scan-svg {
        min-width: 380px;
    }
    
    .sv-panel-skye-profile {
        overflow-x: auto;
    }
    
    .sv-member-profile-svg {
        min-width: 400px;
    }
    
    .sv-data-panels {
        gap: 15px;
    }
    
    /* Visions responsive */
    .sv-vortex-container {
        width: 200px;
        height: 200px;
    }
}

/* ================================================================== */
/* 27. PERFORMANCE & ACCESSIBILITY                                    */
/* ================================================================== */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .sv-section,
    .sv-scan-panel,
    .sv-scan-asset,
    .sv-cursor,
    .sv-skill-fill,
    .sv-vortex-ring,
    .sv-vortex-core,
    .sv-vortex-bar,
    .sv-title,
    .sv-title-ghost,
    .sv-fill-bar,
    .sv-nav-icon {
        transition: none;
        animation: none !important;
    }
    
    .sv-vortex-container.revealed .sv-vortex-ring,
    .sv-vortex-container.revealed .sv-vortex-core,
    .sv-vortex-container.revealed .sv-vortex-bar {
        opacity: 1;
        transform: none;
    }
    
    .sv-ring-segment {
        opacity: 1;
    }
    
    .sv-title {
        opacity: 1;
    }
    
    .sv-title-ghost {
        opacity: 1;
    }
}

/* GPU Acceleration */
.sv-deco-vid {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ================================================================== */
/* FIN DEL ARCHIVO CSS                                                */
/* ================================================================== */
