/* =========================================================
   TECHYBOY // CYBERPUNK FOUNDER OS
   ========================================================= */
:root {
    --bg: #03030a;
    --bg-2: #070713;
    --panel: rgba(10, 12, 28, .55);
    --panel-2: rgba(15, 18, 38, .7);
    --line: rgba(120, 180, 255, .12);
    --cyan: #00f0ff;
    --blue: #3b82f6;
    --purple: #a855f7;
    --pink: #ff2ea6;
    --text: #e6f0ff;
    --muted: #7d8aa8;
    --grad: linear-gradient(135deg, #00f0ff 0%, #7c3aed 50%, #ff2ea6 100%);
    --grad-2: linear-gradient(135deg, #00f0ff, #3b82f6, #a855f7);
    --shadow-cyan: 0 0 30px rgba(0, 240, 255, .35);
    --shadow-purple: 0 0 40px rgba(168, 85, 247, .35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

html,
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden
}

body {
    min-height: 100vh;
    cursor: none
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit;
    cursor: none
}

::selection {
    background: var(--cyan);
    color: #000
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #05050d
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--cyan), var(--purple));
    border-radius: 8px
}

/* ============ CURSOR ============ */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan)
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0, 240, 255, .6);
    transition: width .25s, height .25s, background .25s
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    background: rgba(0, 240, 255, .08);
    border-color: var(--cyan)
}

/* ============ LOADER ============ */
.loader {
    position: fixed;
    inset: 0;
    background: #03030a;
    z-index: 99998;
    display: grid;
    place-items: center;
    transition: opacity .8s, visibility .8s
}

.loader.hidden {
    opacity: 0;
    visibility: hidden
}

.loader-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 40px 40px;
    mask: radial-gradient(circle at center, #000 30%, transparent 80%)
}

.loader-content {
    position: relative;
    text-align: center;
    z-index: 2
}

.loader-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    letter-spacing: 6px;
    font-weight: 900;
    margin-bottom: 30px
}

.loader-logo .brk {
    color: var(--cyan)
}

.loader-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.loader-bar {
    width: 340px;
    max-width: 80vw;
    height: 3px;
    background: rgba(255, 255, 255, .06);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto
}

.loader-fill {
    height: 100%;
    width: 0;
    background: var(--grad-2);
    box-shadow: 0 0 12px var(--cyan);
    transition: width .15s linear
}

.loader-status {
    margin-top: 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 2px
}

.loader-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    pointer-events: none
}

.loader-rings div {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 240, 255, .2);
    border-radius: 50%;
    border-top-color: var(--cyan);
    animation: spin 2s linear infinite
}

.loader-rings div:nth-child(2) {
    inset: 30px;
    animation-duration: 3s;
    animation-direction: reverse;
    border-top-color: var(--purple)
}

.loader-rings div:nth-child(3) {
    inset: 60px;
    animation-duration: 4s;
    border-top-color: var(--pink)
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* ============ BACKGROUND ============ */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 60px 60px;
    mask: radial-gradient(circle at center, #000 20%, transparent 90%);
    opacity: .6
}

.scan-lines {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, rgba(0, 240, 255, .025) 0, rgba(0, 240, 255, .025) 1px, transparent 1px, transparent 4px);
    mix-blend-mode: overlay;
    opacity: .4
}

.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, .12), transparent 60%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity .3s;
    mix-blend-mode: screen
}

.bg-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4;
    animation: float 18s ease-in-out infinite
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    top: -120px;
    left: -120px
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--purple);
    bottom: -200px;
    right: -150px;
    animation-delay: -6s
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--pink);
    top: 40%;
    left: 50%;
    animation-delay: -12s;
    opacity: .2
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(40px, -30px) scale(1.1)
    }
}

/* ============ NAV ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    transition: all .3s
}

.nav.scrolled {
    padding: 14px 40px;
    background: rgba(3, 3, 10, .7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line)
}

.nav-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 3px
}

.nav-logo b {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.logo-mark {
    width: 32px;
    height: 32px;
    color: var(--cyan);
    filter: drop-shadow(0 0 8px var(--cyan))
}

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none
}

.nav-links a {
    position: relative;
    padding: 10px 16px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--muted);
    transition: .25s;
    text-transform: uppercase
}

.nav-links a::before {
    content: attr(data-num);
    position: absolute;
    top: 2px;
    left: 6px;
    font-size: 9px;
    color: var(--cyan);
    opacity: 0;
    transition: .25s;
    font-family: 'JetBrains Mono', monospace
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 1px;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    transform: translateX(-50%);
    transition: .25s
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--cyan);
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(0, 240, 255, .04)
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px #00ff88;
    animation: pulse 1.6s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.nav-burger {
    display: none;
    width: 34px;
    height: 34px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px
}

.nav-burger span {
    width: 18px;
    height: 1.5px;
    background: var(--cyan);
    transition: .25s
}

/* ============ COMMON ============ */
.gradient {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.cyan {
    color: var(--cyan)
}

.ok {
    color: #00ff88
}

.section {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 140px 40px;
    z-index: 2
}

.section-head {
    margin-bottom: 80px;
    position: relative
}

.sec-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--cyan);
    letter-spacing: 3px;
    margin-bottom: 14px
}

.sec-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1
}

.sec-line {
    position: absolute;
    bottom: -26px;
    left: 0;
    width: 120px;
    height: 2px;
    background: var(--grad-2);
    box-shadow: var(--shadow-cyan)
}

.panel {
    position: relative;
    background: linear-gradient(135deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line);
    border-radius: 14px;
    backdrop-filter: blur(20px);
    overflow: hidden
}

.panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 240, 255, .4), transparent 40%, transparent 60%, rgba(168, 85, 247, .4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.panel-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, .3);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 1.5px
}

.panel-title {
    color: var(--cyan)
}

.panel-meta {
    color: var(--muted)
}

.dots {
    display: flex;
    gap: 6px
}

.dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block
}

.dots i:nth-child(1) {
    background: #ff5f56
}

.dots i:nth-child(2) {
    background: #ffbd2e
}

.dots i:nth-child(3) {
    background: #27c93f
}

/* ============ HUD CORNERS ============ */
.hud-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--cyan);
    opacity: .6;
    filter: drop-shadow(0 0 4px var(--cyan))
}

.hud-corner.tl {
    top: 24px;
    left: 24px;
    border-right: none;
    border-bottom: none
}

.hud-corner.tr {
    top: 24px;
    right: 24px;
    border-left: none;
    border-bottom: none
}

.hud-corner.bl {
    bottom: 24px;
    left: 24px;
    border-right: none;
    border-top: none
}

.hud-corner.br {
    bottom: 24px;
    right: 24px;
    border-left: none;
    border-top: none
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    z-index: 2
}

.hero-frame {
    position: absolute;
    inset: 20px;
    pointer-events: none
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(0, 240, 255, .04);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--cyan);
    margin-bottom: 30px
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    animation: pulse 1.4s infinite
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(46px, 8.5vw, 118px);
    line-height: .9;
    letter-spacing: 1px;
    margin-bottom: 30px
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: lineReveal .9s cubic-bezier(.2, .8, .2, 1) forwards
}

.hero-title .line:nth-child(1) {
    animation-delay: .1s
}

.hero-title .line:nth-child(2) {
    animation-delay: .25s
}

.hero-title .line:nth-child(3) {
    animation-delay: .4s
}

.hero-title .line:nth-child(4) {
    animation-delay: .55s
}

@keyframes lineReveal {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-rotator {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(15px, 1.5vw, 20px);
    color: var(--cyan);
    margin-bottom: 24px;
    letter-spacing: 2px;
    height: 30px
}

.rot-prefix {
    color: var(--purple);
    font-weight: 700
}

.rot-stage {
    position: relative;
    height: 30px;
    flex: 1;
    overflow: hidden
}

.rot-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    transition: .6s cubic-bezier(.2, .8, .2, 1);
    text-shadow: 0 0 12px rgba(0, 240, 255, .5)
}

.rot-item.active {
    opacity: 1;
    transform: translateY(0)
}

.rot-item.exit {
    opacity: 0;
    transform: translateY(-100%)
}

.rot-cursor {
    color: var(--cyan);
    animation: blink 1s infinite
}

@keyframes blink {
    50% {
        opacity: 0
    }
}

.hero-sub {
    max-width: 560px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px
}

.hero-sub b {
    color: var(--text)
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px
}

/* ============ BUTTONS ============ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    border: 1px solid var(--cyan);
    border-radius: 6px;
    background: rgba(0, 240, 255, .05);
    color: #fff;
    overflow: hidden;
    transition: .3s;
    text-transform: uppercase
}

.btn:hover {
    background: rgba(0, 240, 255, .15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, .25)
}

.btn-primary {
    border-color: transparent;
    background: var(--grad-2);
    box-shadow: 0 0 20px rgba(0, 240, 255, .4)
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, .7), 0 0 60px rgba(168, 85, 247, .5)
}

.btn-ghost {
    border-color: var(--line);
    color: var(--text)
}

.btn-ghost:hover {
    border-color: var(--cyan)
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) 50%, rgba(255, 255, 255, .4), transparent 60%);
    opacity: 0;
    transition: .3s;
    pointer-events: none
}

.btn:hover .btn-glow {
    opacity: 1
}

.btn-arrow {
    transition: .3s
}

.btn:hover .btn-arrow {
    transform: translateX(4px)
}

/* ============ HERO META ============ */
.hero-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 600px;
    padding-top: 30px;
    border-top: 1px solid var(--line)
}

.hero-meta>div {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.m-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 30px;
    font-weight: 900;
    background: var(--grad-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.m-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase
}

/* ============ HOLO FRAME ============ */
.holo-frame {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
    margin-left: auto;
    perspective: 1000px
}

.holo-rings {
    position: absolute;
    inset: 0
}

.ring {
    position: absolute;
    border: 1px solid;
    border-radius: 50%
}

.r1 {
    inset: 0;
    border-color: rgba(0, 240, 255, .3);
    border-top-color: var(--cyan);
    animation: spin 12s linear infinite
}

.r2 {
    inset: 30px;
    border-color: rgba(168, 85, 247, .3);
    border-bottom-color: var(--purple);
    animation: spin 9s linear infinite reverse
}

.r3 {
    inset: 60px;
    border-color: rgba(255, 46, 166, .2);
    border-left-color: var(--pink);
    animation: spin 16s linear infinite
}

.holo-core {
    position: absolute;
    inset: 90px;
    background: linear-gradient(135deg, var(--panel-2), rgba(0, 0, 0, .6));
    border: 1px solid var(--line);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 60px rgba(0, 240, 255, .1), 0 0 60px rgba(0, 240, 255, .15)
}

.holo-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--grad);
    display: grid;
    place-items: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #000;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 240, 255, .5)
}

.avatar-initials {
    position: relative;
    z-index: 2
}

.avatar-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .4), transparent);
    animation: scan 2.4s linear infinite
}

@keyframes scan {
    0% {
        top: -30%
    }

    100% {
        top: 100%
    }
}

.holo-id {
    width: 100%;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px
}

.id-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed var(--line)
}

.id-row span {
    color: var(--muted)
}

.id-row b {
    color: var(--cyan)
}

.id-row b.ok {
    color: #00ff88
}

.holo-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan)
}

.holo-particles span:nth-child(1) {
    top: 10%;
    left: 50%;
    animation: hp 4s linear infinite
}

.holo-particles span:nth-child(2) {
    top: 50%;
    left: 5%;
    animation: hp 5s linear infinite .5s
}

.holo-particles span:nth-child(3) {
    top: 90%;
    left: 50%;
    animation: hp 4.5s linear infinite 1s
}

.holo-particles span:nth-child(4) {
    top: 50%;
    left: 95%;
    animation: hp 5.5s linear infinite 1.5s
}

.holo-particles span:nth-child(5) {
    top: 25%;
    left: 80%;
    animation: hp 4.2s linear infinite .8s;
    background: var(--purple);
    box-shadow: 0 0 8px var(--purple)
}

.holo-particles span:nth-child(6) {
    top: 75%;
    left: 20%;
    animation: hp 5.2s linear infinite 1.3s;
    background: var(--pink);
    box-shadow: 0 0 8px var(--pink)
}

@keyframes hp {

    0%,
    100% {
        opacity: 0;
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: scale(1.3)
    }
}

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--muted)
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, .1);
    position: relative;
    overflow: hidden
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 20px;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: scrollDot 2s ease-in-out infinite
}

@keyframes scrollDot {
    0% {
        top: -20px
    }

    100% {
        top: 50px
    }
}

/* ============ ABOUT ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px
}

.terminal {
    padding: 0
}

.terminal-body {
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.9;
    color: var(--text)
}

.terminal-body p {
    margin-bottom: 10px
}

.terminal-body .prompt {
    color: var(--cyan)
}

.terminal-body .t-out {
    color: var(--muted);
    padding-left: 16px;
    border-left: 2px solid var(--purple);
    margin: 8px 0 16px
}

.terminal-body b {
    color: #fff;
    font-weight: 600
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.stat-card {
    padding: 24px;
    text-align: center;
    transition: .3s
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-cyan)
}

.stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 54px;
    font-weight: 900;
    background: var(--grad-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1
}

.stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
    margin: 8px 0 12px
}

.stat-bar {
    height: 3px;
    background: rgba(255, 255, 255, .06);
    border-radius: 2px;
    overflow: hidden
}

.stat-bar i {
    display: block;
    height: 100%;
    width: var(--w, 100%);
    background: var(--grad-2);
    box-shadow: 0 0 8px var(--cyan)
}

/* ============ SKILLS ============ */
.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px
}

.skill-card {
    position: relative;
    padding: 28px 22px;
    background: linear-gradient(135deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line);
    border-radius: 14px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: .35s;
    cursor: none
}

.skill-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    box-shadow: 0 20px 50px rgba(0, 240, 255, .2)
}

.sc-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 240, 255, .25), transparent 70%);
    left: var(--mx, 50%);
    top: var(--my, 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .3s;
    pointer-events: none
}

.skill-card:hover .sc-glow {
    opacity: 1
}

.sc-icon {
    font-family: 'Orbitron', sans-serif;
    font-size: 34px;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 14px
}

.skill-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 4px
}

.skill-card span {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 16px
}

.sc-bar {
    height: 3px;
    background: rgba(255, 255, 255, .06);
    border-radius: 2px;
    overflow: hidden
}

.sc-bar i {
    display: block;
    height: 100%;
    width: 0;
    background: var(--grad-2);
    box-shadow: 0 0 8px var(--cyan);
    transition: width 1.4s cubic-bezier(.2, .8, .2, 1)
}

.skill-card.in-view .sc-bar i {
    width: var(--p)
}

/* ============ PROJECTS ============ */
.featured-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    padding: 50px;
    background: linear-gradient(135deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    overflow: hidden
}

.fc-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink), var(--cyan));
    background-size: 300% 300%;
    border-radius: 24px;
    z-index: -1;
    animation: gradShift 8s linear infinite;
    filter: blur(20px);
    opacity: .4
}

@keyframes gradShift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.fc-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 40px 40px;
    mask: radial-gradient(circle at 70% 50%, #000, transparent 80%);
    opacity: .5;
    pointer-events: none
}

.fc-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 240, 255, .1);
    border: 1px solid var(--cyan);
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 20px
}

.fc-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 20px
}

.fc-desc {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px
}

.fc-desc b {
    color: var(--cyan)
}

.fc-features {
    display: grid;
    gap: 10px;
    margin-bottom: 24px
}

.fc-features div {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px
}

.fc-features span {
    color: var(--cyan)
}

.fc-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px
}

.fc-stack span {
    padding: 5px 12px;
    background: rgba(168, 85, 247, .1);
    border: 1px solid rgba(168, 85, 247, .3);
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--purple)
}

.fc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

/* preview */
.preview-window {
    position: relative;
    background: #02020a;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 40px rgba(0, 240, 255, .2)
}

.pw-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, .5);
    border-bottom: 1px solid var(--line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px
}

.pw-url {
    flex: 1;
    color: var(--muted);
    text-align: center
}

.pw-status {
    color: #00ff88
}

.pw-screen {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    display: grid;
    gap: 10px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, .06), transparent 70%)
}

.pw-row {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 2px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line)
}

.pw-msg {
    padding: 10px 14px;
    border-radius: 8px;
    line-height: 1.6
}

.pw-msg.user {
    background: rgba(0, 240, 255, .06);
    border-left: 2px solid var(--cyan);
    color: #cdeaff
}

.pw-msg.user b {
    color: var(--cyan)
}

.pw-msg.ai {
    background: rgba(168, 85, 247, .06);
    border-left: 2px solid var(--purple);
    color: #e6d8ff
}

.pw-msg.ai b {
    color: var(--purple)
}

.pw-bars {
    display: grid;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, .3);
    border-radius: 8px
}

.pw-bar-row {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--muted)
}

.pw-bar-row div {
    height: 4px;
    background: rgba(255, 255, 255, .06);
    border-radius: 2px;
    overflow: hidden
}

.pw-bar-row div i {
    display: block;
    height: 100%;
    width: var(--p);
    background: var(--grad-2);
    box-shadow: 0 0 6px var(--cyan)
}

.pw-bar-row b {
    color: var(--cyan);
    text-align: right
}

.pw-typing {
    display: flex;
    gap: 4px;
    padding: 0 14px
}

.pw-typing span {
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    animation: typing 1.2s infinite
}

.pw-typing span:nth-child(2) {
    animation-delay: .2s
}

.pw-typing span:nth-child(3) {
    animation-delay: .4s
}

@keyframes typing {

    0%,
    60%,
    100% {
        opacity: .3;
        transform: translateY(0)
    }

    30% {
        opacity: 1;
        transform: translateY(-3px)
    }
}

/* ============ TIMELINE ============ */
.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto
}

.t-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--cyan) 10%, var(--purple) 50%, var(--pink) 90%, transparent);
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--cyan)
}

.t-item {
    position: relative;
    width: 50%;
    padding: 30px 50px 30px 0;
    margin-bottom: 10px
}

.t-item.right {
    margin-left: 50%;
    padding: 30px 0 30px 50px
}

.t-node {
    position: absolute;
    top: 50px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--cyan);
    box-shadow: 0 0 14px var(--cyan);
    right: -10px;
    z-index: 2
}

.t-item.right .t-node {
    left: -10px;
    right: auto
}

.t-node::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse 1.6s infinite
}

.t-card {
    padding: 24px 26px;
    transition: .3s
}

.t-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-cyan)
}

.t-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 8px
}

.t-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 8px
}

.t-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px
}

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

.contact-body {
    padding: 30px
}

.contact-body h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 30px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    line-height: 1.2
}

.contact-body p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px
}

.socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.soc {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 240, 255, .03);
    transition: .3s;
    font-family: 'Rajdhani', sans-serif
}

.soc:hover {
    border-color: var(--cyan);
    background: rgba(0, 240, 255, .08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, .2)
}

.soc span {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--grad);
    display: grid;
    place-items: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 13px;
    color: #000
}

.soc b {
    font-weight: 600;
    letter-spacing: 1px
}

.form-body {
    padding: 30px;
    display: grid;
    gap: 18px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.field label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--cyan)
}

.field input,
.field textarea {
    padding: 12px 14px;
    background: rgba(0, 0, 0, .3);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    transition: .3s;
    resize: vertical
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, .1)
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--muted)
}

.btn-send {
    width: 100%;
    justify-content: center;
    padding: 16px
}

/* ============ FOOTER ============ */
.footer {
    position: relative;
    border-top: 1px solid var(--line);
    padding: 60px 40px 30px;
    background: rgba(0, 0, 0, .4);
    z-index: 2
}

.footer-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.f-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 10px
}

.f-logo b {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.footer-grid p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 6px
}

.footer-grid h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 14px
}

.footer-grid a {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 8px;
    transition: .2s
}

.footer-grid a:hover {
    color: var(--cyan);
    transform: translateX(4px)
}

.footer-bar {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 2px
}

/* ============ RESPONSIVE ============ */
@media (max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .holo-frame {
        margin: 0 auto
    }

    .about-grid,
    .featured-card,
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px
    }

    .about-stats {
        grid-template-columns: 1fr 1fr
    }

    .nav-links {
        display: none
    }

    .nav-burger {
        display: flex
    }

    .timeline .t-line {
        left: 20px
    }

    .t-item,
    .t-item.right {
        width: 100%;
        margin-left: 0;
        padding: 20px 0 20px 50px
    }

    .t-node,
    .t-item.right .t-node {
        left: 11px;
        right: auto
    }
}

@media (max-width:640px) {
    body {
        cursor: auto
    }

    .cursor-dot,
    .cursor-ring {
        display: none
    }

    .nav,
    .section,
    .hero {
        padding-left: 20px;
        padding-right: 20px
    }

    .hero {
        padding-top: 100px
    }

    .hero-meta {
        grid-template-columns: 1fr 1fr;
        gap: 18px
    }

    .about-stats,
    .socials {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .featured-card {
        padding: 24px
    }

    .nav-cta {
        display: none
    }

    .hud-corner {
        display: none
    }
}
.field textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,255,255,0.2);
    padding: 14px;
    color: white;
    border-radius: 12px;
    resize: vertical;
    font-family: inherit;
}
.avatar-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
@media (max-width:640px){

    .holo-avatar{
        width: 80px;
        height: 80px;
    }

}
