//<!-- ─── CSS ONLY - BEGIN ─── -->

//<!-- ─── STYLE.CSS - BEGIN ─── -->
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root {
    --bg: #0a1128;
    --bg2: #0f1a3c;
    --cyan: #00ffe5;
    --magenta: #ff006e;
    --yellow: #ffe600;
    --purple: #9000ff;
    --white: #ffffff;
    --surface: rgba(0, 255, 229, 0.03);
    --surface2: rgba(144, 0, 255, 0.06);
    --border-c: rgb(0, 255, 229);

    --border-m: rgba(255, 0, 110, 0.25);
    --text: #c8f0ec;
--muted: #6fb0a8; /* brighter, same tone */

    --glow-c: 0 0 20px rgba(0, 255, 229, 0.4), 0 0 60px rgba(0, 255, 229, 0.15);
    --glow-m: 0 0 20px rgba(255, 0, 110, 0.4), 0 0 60px rgba(255, 0, 110, 0.15);

    --cat1: #00ffe7;
    --cat2: #ff2d78;
    --cat3: #ffe600;
    --c: #00ffe7;
    --c2: #ff2d78;
    --c3: #ffe600;
    --c4: #7b2fff;
    --panel: rgba(0, 255, 231, 0.03);
    --border: rgba(0, 255, 231, 0.14);
    --border2: rgba(0, 255, 231, 0.4);
    --text2: rgba(142, 207, 204, 0.5);
}


html {
    scroll-behavior: smooth;
}





.bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 15% 20%, rgba(144, 0, 255, 0.12) 0%, transparent 80%),  /* purple glow */
        radial-gradient(ellipse 50% 50% at 85% 70%, rgba(0, 255, 229, 0.08) 0%, transparent 60%),   /* blue glow */
        radial-gradient(ellipse 40% 30% at 50% 100%, rgba(255, 0, 110, 0.1) 0%, transparent 80%);   /* pink glow */
    pointer-events: none;
}

.bg-image {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;

    opacity: 0;                  /* start invisible */
    transition: opacity 0.5s ease; /* smooth fade */
}

/* When active (hover or class toggle) */
.bg-image.active {
    opacity: 1;                  /* fade in */
}


.bg-grid {
    position: fixed;
    inset: -100px;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(0,255,229,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,229,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from { transform: translateY(0); }
    to { transform: translateY(240px); }
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: crosshair;
    /*
    min-height: 100vh;
    */
}

/* Body fills only 75% of viewport height */
body {
    max-height: 80vh;       /* body will not exceed 75% of viewport height */
    overflow: auto;       /* prevents scrolling past this height */
    position: relative;     /* background positioning relative to body */
}


/* Background layers fixed relative to body */
.bg-image,
.bg-layer,
.bg-grid,
.scanlines,
.vignette {
    position: absolute;      /* or absolute */
    top: 0;               /* starting position */
    left: 0;
    width: 100%;
    height: 120%;
    pointer-events: none;
    z-index: 0;
    
    /* push it down by 50px */
    top: 50px;            /* moves the whole vignette lower */
    
    /* or use transform instead */
    transform: translateY(000px); /* pushes it down smoothly without affecting layout */
}





/* GRID GALLERY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(0, 255, 231, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 231, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* SCANLINE GALLERY*/
body::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--c) 30%, rgba(0, 255, 231, 0.6) 50%, var(--c) 70%, transparent 100%);
    animation: scan 8s linear infinite;
    opacity: 0.15;
    pointer-events: none;
    z-index: 9999;
}

//<!-- ─── STYLE.CSS - END ─── -->


//<!-- ─── nav-style.CSS - BEGIN ─── -->
/// ─── NAVIGATION ─── */
nav {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center; /* keeps items centered vertically */
    justify-content: space-between;
    height: 12vh; /* adjust for desired taller nav */
    padding: 0 3vh; /* horizontal spacing only */
    border-bottom: 1px solid var(--border-c);
    background: rgba(10,17,40,1);
    backdrop-filter: blur(20px);
}
nav {
    position: relative;
    width: 100%;
    height: 10vh; /* taller nav */
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* stretch children vertically */
    border-bottom: 1px solid var(--border-c);
    background: rgba(10,17,40,1);
    backdrop-filter: blur(20px);
    padding: 0 3vh; /* horizontal spacing only */
}

/* Make nav content fill full height */
.nav-left, .nav-right {
    display: flex;
    align-items: center; /* or stretch if you want full height */
    height: 100%;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 5vw; /* push it left by adding space to the right */
}

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700; /* yellow */
    text-decoration: none;
    transform: translateY(-0.5vh);
    text-shadow: var(--glow-c);
    letter-spacing: 0.15em;
}

.nav-logo .slash {
    color: var(--yellow);
    margin: 0 4px;
    animation: pulse 2s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.5vw;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border: 1px solid transparent;
    position: relative;
    transition: all 0.2s;
}
.nav-links a {
    padding: 1vh 1.5vh; /* increase vertical padding */
    font-size: 2vh; /* scale font with nav */
}
.nav-links a:hover {
    color: var(--cyan);
    border-color: var(--border-c);
    text-shadow: var(--glow-c);
    background: rgba(0, 255, 229, 0.25); /* cyan background with 25% opacity */
}


.nav-links a::before {
    content: '>';
    color: var(--cyan);
    margin-right: 4px;
    opacity: 0;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    color: var(--cyan);
    border-color: var(--border-c);
    text-shadow: var(--glow-c);
}

.nav-links a:hover::before {
    opacity: 1;
}

/* Glowing block logo */
.logo-container {
    position: relative;
    display: inline-block;
}

.nav-block-logo {
    width: 60px;
    height: auto;
    position: relative;
    z-index: 2;
    transform: translateY(-20%);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0,150,255,0.7))
            drop-shadow(0 0 20px rgba(0,150,255,0.5))
            drop-shadow(0 0 30px rgba(0,150,255,0.4));
}
.nav-block-logo {
    height: 80%; /* relative to nav height */
    object-fit: contain;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: rgba(0,150,255,0.6);
    border-radius: 50%;
    filter: blur(25px);
    z-index: 1;
}

/* Status dot */
.status-dot {
    width: 8px;
    height: 8px;
    background: var(--magenta);
    border-radius: 50%;
    box-shadow: var(--glow-c);
    animation: pulse 2s ease-in-out infinite;
}

/* Layout helper for main nav */
.main-nav {
    display: grid;
    grid-template-columns: 7fr 3fr;
    align-items: center;
    width: 100%;
}
/* Bottom cyan bar inside nav */
.main-nav::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px; /* thickness of the bar */
    background-color: var(--cyan);
    position: absolute;
    bottom: 0;
    left: 0;
}

/* ─── BOTTOM NAV BAR ─── */
nav.main-nav {
    position: relative; /* ensures children position relative to nav */
}


/* Mobile breakpoint */
@media (max-width: 768px) {
    .nav-left {
        display: none;
    }

    .nav-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-left: 10vw;      /* remove any margin */
        padding: 0;     /* remove any padding */
    }

.nav-block-logo {
    width: 80px;   /* bigger size, adjust as needed */
    height: auto;  /* keeps aspect ratio */

}


    .nav-logo {
        font-size: 2rem;    /* bigger KRAVENARK text */
        text-align: center;
display:none;
    }
}



/* ─── nav-style.CSS - END ─── */


/* ─── hero-style.CSS - BEGIN ─── */

/* ─── HERO SECTION ─── */
#hero {
    position: relative;
    z-index: 1;
    max-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 4rem;
    overflow: hidden;
}

/* ─── HERO SECTION ─── */
#hero {
    position: relative;
    z-index: 1;
    height: 80vh;              /* hero height */
    display: flex;
    flex-direction: column;
    justify-content: center;    /* vertical centering */
    padding: 0 3rem;
}
/* Move hero up */
#hero {
    transform: translateY(-15vh);
}


.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;

        display: flex;
    flex-direction: column;
    justify-content: center; /* vertical centering */
    height: 100%;
    transform: translateY(20px); /* shift down */
    
}

/* Eyebrow text (small label) */
.hero-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow span {
    color: var(--magenta);
      margin-bottom: 0; /* remove default top margin */
}

/* Main hero name */
.hero-name {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: clamp(1.7rem, 6vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}
.hero-name {
    line-height: 1; /* remove extra spacing */
    margin-top: -0.3em; /* lift it slightly */
}

.glitch-wrap {
    position: relative;
    display: inline-block;
}

.glitch-wrap::before, .glitch-wrap::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    font: inherit;
}

.glitch-wrap::before {
    animation: glitch2 4s infinite;
    color: var(--magenta);
}

.glitch-wrap::after {
    animation: glitch2 4s 0.1s infinite;
    color: var(--cyan);
}

.glitch-main {
    animation: glitch1 4s infinite;
}

/* Keyframes */
@keyframes glitch1 { 
    0%, 90%, 100% { clip-path: none; transform: none; opacity: 1; }
    92% { clip-path: polygon(0 10%, 100% 10%, 100% 40%, 0 40%); transform: translateX(-4px); opacity: 0.8; }
    94% { clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); transform: translateX(4px); opacity: 0.8; }
    96% { clip-path: none; transform: translateX(-2px); }
    98% { clip-path: polygon(0 20%, 100% 20%, 100% 55%, 0 55%); transform: translateX(3px); opacity: 0.9; }
}

@keyframes glitch2 {
    0%, 87%, 100% { opacity: 0; transform: none; }
    88% { opacity: 0.7; clip-path: polygon(0 30%, 100% 30%, 100% 55%, 0 55%); transform: translateX(6px); color: var(--magenta); }
    90% { opacity: 0.5; clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%); transform: translateX(-6px); color: var(--cyan); }
}



.hero-name .cy { color: var(--cyan); text-shadow: var(--glow-c); }
.hero-name .mg { color: var(--magenta); text-shadow: var(--glow-m); }
.hero-name .yl {
    display: inline-block;
    color: var(--yellow);
    text-shadow: var(--glow-m);
    font-size: clamp(5rem, 12vw, 5rem);
    white-space: nowrap;
    animation: pulse 10s ease-in-out infinite;
        margin-top: 0; /* remove default top margin */
}

/* Hero subtitle / title */
.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(0.9rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
        margin-bottom: 0; /* remove default bottom margin */
}

.hero-title .hi { color: var(--magenta); }

/* Hero columns layout */
.hero-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Hero bio */
.hero-bio {
    font-size: 1.2rem;
    color: rgba(200,240,236,0.65);
    line-height: 1.9;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}

/* Hero stats grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border: 1px solid var(--border-c);
    background: var(--border-c);
    opacity: 0;
    animation: fadeUp 0.8s 1.1s forwards;
padding: 1rem;

}

.stat-box {
    background: var(--bg);
    padding: 1rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.stat-box:hover { background: rgba(0,255,229,0.04); }

.stat-num {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--cyan);
    text-shadow: var(--glow-c);
    margin-bottom: 0.3rem;
}

.stat-num.mg { color: var(--magenta); text-shadow: var(--glow-m); }

.stat-lbl {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Hero CTA buttons */
.hero-cta-row {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s 1.3s forwards;
        margin-top: 5vh; /* remove default top margin */
}



.btn-primary {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    color: var(--cyan);                        /* blue text by default */
    background: rgba(0, 255, 229, 0.2);       /* semi-transparent blue interior */
    border: 2px solid var(--cyan);            /* blue outline */

    text-decoration: none;
    padding: 0.7rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.3s ease;                /* smooth transition */
}

.btn-primary:hover {
    color: #fff;                              /* white text on hover */
    background: rgba(255, 230, 0, 0.4);       /* more opaque yellow interior */
    border-color: #ffe600;                     /* yellow outline */
    box-shadow: 0 0 10px rgba(255, 230, 0, 0.5), 0 0 20px rgba(255, 230, 0, 0.3); /* optional yellow glow */
}

.btn-primary:hover {
    color: #fff; /* text white */
    background: rgba(255, 230, 0, 0.5); /* yellow with 50% opacity */
    border-color: var(--yellow); /* solid yellow outline */
    box-shadow: 0 0 10px rgba(255, 230, 0, 0.5), 0 0 20px rgba(255, 230, 0, 0.3); /* yellow glow */
}


.btn-ghost {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    background: transparent;
    text-decoration: none;
    padding: 0.9rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--border-c);
    transition: all 0.2s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-ghost:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    text-shadow: var(--glow-m);
}

/* Hero animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 20%, 40%, 60%, 80%, 100% { opacity: 1; transform: scale(1); }
    10% { opacity: 0.85; transform: scale(0.999); }
    25% { opacity: 0.7; transform: scale(0.998); }
    45% { opacity: 0.9; transform: scale(0.9995); }
    55% { opacity: 0.6; transform: scale(0.997); }
    75% { opacity: 0.8; transform: scale(0.9985); }
    90% { opacity: 0.95; transform: scale(0.9997); }
}

/* Responsive hero adjustments */
@media (max-width: 768px) {
    .hero-inner { text-align: center; }
    .hero-columns { grid-template-columns: 1fr; gap: 2rem; }
    .hero-cta-row { flex-direction: column; gap: 1rem; align-items: center; }
    .hero-cta-row a { width: 50%; padding: 1rem; text-align: center; font-size: 1.875em; margin: auto; }
    .hero-name .yl { font-size: calc(7vw * 1.25); }
    .hero-title span { font-size: calc(3vw * 1.25); }
    .hero-eyebrow { font-size: calc(3vw * 1.25); }


    /* Move hero up */
#hero {
    transform: translateY(-5vh);
}

    .hero-cta-row .btn-primary {
        font-size: 0.9rem;  /* smaller text on mobile */
        padding: 0.6rem 1rem; /* optional: smaller padding */
        justify-content: center;
    }

}

/* ─── hero-style.CSS - END ─── */













/* ─── footer-style.CSS - BEGIN */


footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-c);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-family: 'Share Tech Mono', monospace;
    color: var(--muted);
    background-color: rgba(10, 17, 40, 1);
    min-height: 0vh;
        transform: translateY(-10vh); /* move footer up by 20% of viewport height */
}
.footer-brand {
    font-size: 2vw;
    letter-spacing: 0.2em;
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-links a {
    font-size: 1.5vw;
    text-decoration: none;
    color: var(--muted);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bar {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    box-shadow: 0 0 6px var(--cyan);
    margin: 1rem 0;
}

.footer-bottom {
    font-size: 1vw;
    letter-spacing: 0.2em;
    margin-top: -1.5rem;
}
@media (max-width: 768px) {
    .footer-brand {
        font-size: 5vw;  /* smaller on mobile */
    }
        .footer-bottom {
        font-size: 3vw;  /* smaller on mobile */
    }



    
}


/* ─── footer-style.CSS - END */







.bg-image,
.bg-layer,
.bg-grid,
.scanlines,
.vignette {
    pointer-events: none; /* lets clicks pass through */
}
nav.main-nav {
    position: relative; /* or fixed if you want it to stay on top while scrolling */
    z-index: 100;       /* higher than 0 of background layers */
}


/* ================= CUSTOM CURSOR ================= */
.red-cursor-inner {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: red;              /* small circle is red */
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255,0,0,0.5);
}


.corner-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.5);  /* light white 50% */
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
}

.cross-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9996;
    transform: translate(-50%, -50%);
}

.cross-cursor::before,
.cross-cursor::after {
    content: '';
    position: absolute;
    background: rgba(164, 164, 164, 0.5);  /* cyan cross */
}

.cross-cursor::before { width: 24px; height: 1px; top: -0.5px; left: -12px; }
.cross-cursor::after  { width: 1px; height: 24px; top: -12px; left: -0.5px; }

/* Small circle becomes white */
.red-cursor-inner {
    background:rgba(255,0,0,0.5);;                 /* change from red to white */
    box-shadow: 0 0 10px rgba(255,255,255,0.2); /* change from red glow to white */
}

/* Crosshair becomes red */
.cross-cursor::before,
.cross-cursor::after {
    background: rgba(255,0,0,1);     /* change from gray to red */
}

/* MOBILE-SPECIFIC ADJUSTMENTS */
@media (max-width: 768px) {
    
    /* Move hero/hero content up */
    #hero, .hero-inner {
        transform: translateY(-10vh); /* move everything up */
    }

    /* Push nav logo & text to bottom */
    .nav-right {
        position: fixed;       /* fix at bottom */
        bottom: 1rem;          /* spacing from bottom */
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: auto;
        gap: 0.5rem;
    }

    /* Hide nav links for mobile */
    .nav-left {
        display: none;
    }
    
    /* Optional: shrink logo */
    .nav-block-logo {
        width: 60px;
        height: auto;
    }

    .nav-logo {
        display: block;
        font-size: 1.5rem;
        text-align: center;
    }
}
