:root {
    --bg-dark: #020205;
    --bg-panel: rgba(5, 5, 12, 0.6);
    --blue-main: #00e5ff;
    --blue-dark: #0055ff;
    --blue-glow: rgba(0, 229, 255, 0.4);
    --text-primary: #e0fbfc;
    --text-muted: #6b8a9e;
    --border-color: rgba(0, 229, 255, 0.15);
    
    --font-mono: 'JetBrains Mono', monospace;
    --font-sans: 'Space Grotesk', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
html { scroll-behavior: smooth; font-size: 16px; background-color: var(--bg-dark); }
body { font-family: var(--font-sans); color: var(--text-primary); overflow-x: hidden; }
::selection { background: var(--blue-main); color: #000; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 2px; }
.text-blue { color: var(--blue-main); text-shadow: 0 0 10px var(--blue-glow); }

/* Custom Cursor */
.cursor-dot {
    position: fixed; top: 0; left: 0; width: 4px; height: 4px;
    background: var(--blue-main); border-radius: 50%;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 99999;
    box-shadow: 0 0 10px var(--blue-main);
}
.cursor-ring {
    position: fixed; top: 0; left: 0; width: 30px; height: 30px;
    border: 1px solid var(--blue-main); border-radius: 50%;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 99998;
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* ===================== ENTER SPLASH ===================== */
#enter-splash {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: #000; z-index: 20000;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#splash-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.splash-content {
    position: relative; z-index: 1; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.splash-rings { position: relative; width: 200px; height: 200px; margin: 0 auto 20px; }
.splash-ring {
    position: absolute; border-radius: 50%; border: 1px solid var(--blue-main);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.splash-ring.r1 { width: 100%; height: 100%; opacity: 0.6; animation: spin 8s linear infinite; }
.splash-ring.r2 { width: 70%;  height: 70%;  opacity: 0.4; animation: spin-reverse 5s linear infinite; border-style: dashed; }
.splash-ring.r3 { width: 40%;  height: 40%;  opacity: 0.8; box-shadow: 0 0 20px var(--blue-glow); animation: pulse-ring 2s ease-in-out infinite; }
@keyframes pulse-ring { 0%,100%{transform:translate(-50%,-50%) scale(1); opacity:0.8;} 50%{transform:translate(-50%,-50%) scale(1.1); opacity:1;} }

.splash-logo {
    font-family: var(--font-mono); font-size: 3.5rem; font-weight: 800;
    letter-spacing: 6px; color: #fff;
}
.splash-logo span { color: var(--blue-main); text-shadow: 0 0 20px var(--blue-glow); }
.splash-sub {
    font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted);
    letter-spacing: 3px; text-transform: uppercase;
}
#enter-btn {
    margin-top: 30px; background: transparent;
    border: 1px solid var(--blue-main); color: var(--text-primary);
    padding: 20px 50px; font-family: var(--font-mono); font-size: 1rem;
    letter-spacing: 4px; text-transform: uppercase; cursor: pointer;
    position: relative; overflow: hidden; transition: 0.3s;
    display: flex; align-items: center; gap: 15px;
    animation: enter-pulse 2s ease-in-out infinite;
}
#enter-btn:hover { background: var(--blue-main); color: #000; box-shadow: 0 0 40px var(--blue-glow); transform: scale(1.05); animation: none; }
@keyframes enter-pulse {
    0%,100% { box-shadow: 0 0 10px var(--blue-glow); }
    50%      { box-shadow: 0 0 30px var(--blue-glow), 0 0 60px rgba(0,229,255,0.2); }
}
.enter-icon { font-size: 1.2rem; color: var(--blue-main); }
#enter-btn:hover .enter-icon { color: #000; }
.splash-note { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.splash-note i { color: var(--blue-main); }

/* Boot Screen */
#boot-screen {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: #000; z-index: 10000; display: flex; flex-direction: column;
    justify-content: center; align-items: center; font-family: var(--font-mono);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.boot-init-screen { display: flex; justify-content: center; align-items: center; height: 100%; width: 100%; }
.boot-content { width: 80%; max-width: 600px; }
.boot-logo { font-size: 3rem; margin-bottom: 2rem; letter-spacing: 4px; }
.boot-r { color: #fff; } .boot-dot { color: var(--blue-main); animation: blink 1s infinite; } .boot-sys { color: var(--text-muted); font-size: 1.5rem; }
.boot-lines { height: 150px; overflow: hidden; font-size: 0.9rem; color: var(--blue-main); margin-bottom: 2rem; display: flex; flex-direction: column; justify-content: flex-end; }
.boot-lines p { margin-bottom: 4px; opacity: 0.8; }
.boot-progress-bar { width: 100%; height: 2px; background: rgba(255,255,255,0.1); margin-bottom: 1rem; position: relative; }
.boot-progress-fill { width: 0%; height: 100%; background: var(--blue-main); box-shadow: 0 0 10px var(--blue-main); }
.boot-status { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 2px; }

/* HUD Elements */
.hud-corner { position: fixed; width: 40px; height: 40px; border: 2px solid var(--blue-main); z-index: 100; pointer-events: none; opacity: 0.5; }
.hud-tl { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.hud-tr { top: 20px; right: 20px; border-left: none; border-bottom: none; }
.hud-bl { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.hud-br { bottom: 20px; right: 20px; border-left: none; border-top: none; }
.scanline-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: repeating-linear-gradient(0deg, rgba(0,0,0,0.15), rgba(0,0,0,0.15) 1px, transparent 1px, transparent 2px);
    pointer-events: none; z-index: 90; opacity: 0.5;
}
#matrix-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; opacity: 0.15; }
#hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.4; }

/* Music Panel */
.music-panel {
    position: fixed; bottom: 25px; right: 25px; z-index: 1001;
    display: flex; align-items: center; gap: 10px;
    background: rgba(2, 2, 5, 0.8); border: 1px solid var(--blue-main);
    padding: 10px 16px; backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
    font-family: var(--font-mono); transition: 0.3s;
    animation: music-hint 2s ease-in-out infinite;
}
.music-panel.playing { animation: none; box-shadow: 0 0 20px rgba(0, 229, 255, 0.15); }
.music-panel:hover { box-shadow: 0 0 30px rgba(0, 229, 255, 0.4); animation: none; }
@keyframes music-hint {
    0%, 100% { box-shadow: 0 0 10px rgba(0,229,255,0.1); }
    50%       { box-shadow: 0 0 25px rgba(0,229,255,0.5); }
}
.music-btn {
    background: none; border: none; color: var(--blue-main);
    font-size: 1rem; width: 28px; height: 28px; display: flex;
    align-items: center; justify-content: center; transition: 0.2s;
    flex-shrink: 0;
}
.music-btn:hover { color: #fff; transform: scale(1.2); }
.vol-bar-track {
    width: 80px; height: 4px; background: rgba(255,255,255,0.1);
    position: relative; overflow: hidden;
}
.vol-bar-fill {
    height: 100%; width: 30%; background: var(--blue-main);
    box-shadow: 0 0 8px var(--blue-glow); transition: width 0.2s ease;
}
.vol-label { font-size: 0.75rem; color: var(--text-muted); min-width: 30px; text-align: right; }

@media (max-width: 768px) {
    .music-panel { bottom: 15px; right: 15px; gap: 7px; padding: 8px 12px; }
    .vol-bar-track { width: 50px; }
}

/* Side Navigation */
.side-nav {
    position: fixed; left: 0; top: 0; height: 100vh; width: 80px;
    background: rgba(2, 2, 5, 0.8); border-right: 1px solid var(--border-color);
    backdrop-filter: blur(10px); z-index: 1000; display: flex; flex-direction: column;
    align-items: center; justify-content: space-between; padding: 30px 0;
}
.side-nav-logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; }
.side-nav-links { list-style: none; display: flex; flex-direction: column; gap: 30px; width: 100%; align-items: center; }
.nav-link {
    color: var(--text-muted); font-size: 1.2rem; transition: all 0.3s;
    position: relative; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
}
.nav-link::after {
    content: attr(data-label); position: absolute; left: 100%; top: 50%; transform: translateY(-50%) translateX(10px);
    background: var(--blue-main); color: #000; font-size: 0.7rem; font-family: var(--font-mono); font-weight: 700;
    padding: 4px 8px; opacity: 0; pointer-events: none; transition: 0.3s; white-space: nowrap; border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--blue-main); text-shadow: 0 0 10px var(--blue-glow); }
.nav-link:hover::after { opacity: 1; transform: translateY(-50%) translateX(20px); }
.side-nav-status { display: flex; flex-direction: column; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.6rem; color: var(--blue-main); }
.pulse-green { width: 8px; height: 8px; background: #00ff66; border-radius: 50%; box-shadow: 0 0 10px #00ff66; animation: pulse 2s infinite; }

/* Mobile Header & Nav */
.mobile-header { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 70px; background: rgba(2, 2, 5, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); z-index: 1000; justify-content: space-between; align-items: center; padding: 0 25px; }
.mobile-logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; }
.hamburger { background: none; border: none; display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: var(--blue-main); transition: 0.3s; }
.mobile-nav-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(2, 2, 5, 0.98); z-index: 1001; transition: 0.4s ease-in-out; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.mobile-nav-overlay.active { right: 0; }
.mobile-nav-close { position: absolute; top: 25px; right: 25px; background: none; border: none; color: var(--blue-main); font-size: 2rem; cursor: pointer; }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 30px; text-align: center; }
.mob-link { font-size: 1.5rem; font-family: var(--font-mono); color: var(--text-primary); text-decoration: none; text-transform: uppercase; transition: 0.3s; }
.mob-link i { color: var(--blue-main); margin-right: 10px; }
.mob-link:hover { color: var(--blue-main); letter-spacing: 4px; }

/* Main Content Area */
.main-content { margin-left: 80px; min-height: 100vh; position: relative; z-index: 1; }
.section { min-height: 100vh; padding: 100px 8%; position: relative; display: flex; flex-direction: column; justify-content: center; }

/* Glass Card */
.glass-card {
    background: var(--bg-panel); border: 1px solid var(--border-color);
    backdrop-filter: blur(12px); padding: 40px; position: relative; overflow: hidden;
}
.glass-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-main), transparent); opacity: 0.5;
}

/* Buttons */
.btn-primary, .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px;
    font-family: var(--font-mono); font-weight: 700; font-size: 0.9rem; text-decoration: none;
    letter-spacing: 2px; position: relative; transition: 0.3s; text-transform: uppercase; border: 1px solid transparent;
}
.btn-primary { background: var(--blue-dark); color: #fff; border-color: var(--blue-main); }
.btn-primary:hover { background: var(--blue-main); color: #000; box-shadow: 0 0 20px var(--blue-glow); }
.btn-ghost { background: transparent; color: var(--blue-main); border-color: var(--blue-main); }
.btn-ghost:hover { background: rgba(0, 229, 255, 0.1); }
.w-full { width: 100%; justify-content: center; }

/* Hero Section */
.hero-section { overflow: hidden; }
.hero-hud-grid { position: absolute; top: 10%; left: 8%; width: 84%; display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.75rem; pointer-events: none; z-index: 2; opacity: 0.7; }
.hud-data-point { display: flex; flex-direction: column; gap: 5px; }
.dp-label { color: var(--text-muted); border-bottom: 1px solid var(--border-color); padding-bottom: 4px; }
.hero-center { display: flex; align-items: center; gap: 80px; z-index: 2; margin-top: 50px; }
.hero-text-block { flex: 1; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--blue-main); border: 1px solid var(--border-color); padding: 8px 16px; border-radius: 50px; margin-bottom: 30px; background: rgba(0, 229, 255, 0.05); }
.tag-dot { width: 6px; height: 6px; background: var(--blue-main); border-radius: 50%; box-shadow: 0 0 8px var(--blue-main); }
.hero-name { font-size: 5rem; line-height: 1.1; margin-bottom: 20px; display: flex; flex-direction: column; }
.name-line { position: relative; }
.accent-line { color: transparent; -webkit-text-stroke: 1px var(--blue-main); }
.hero-role-ticker { font-family: var(--font-mono); font-size: 1.5rem; color: var(--text-muted); margin-bottom: 30px; display: flex; align-items: center; gap: 10px; }
.ticker-label { color: var(--blue-main); }
.ticker-cursor { color: var(--blue-main); animation: blink 1s step-end infinite; }
.hero-bio { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; max-width: 600px; }
.hero-actions { display: flex; gap: 20px; }

/* Hologram Avatar */
.hero-orbit-wrapper { position: relative; width: 400px; height: 400px; display: flex; justify-content: center; align-items: center; perspective: 1000px; }
.orbit-ring { position: absolute; border-radius: 50%; border: 1px dashed var(--blue-main); opacity: 0.3; }
.ring-1 { width: 100%; height: 100%; animation: spin 20s linear infinite; }
.ring-2 { width: 75%; height: 75%; border: 1px solid var(--blue-main); opacity: 0.15; animation: spin-reverse 15s linear infinite; }
.ring-3 { width: 120%; height: 120%; border: 1px dotted var(--text-muted); opacity: 0.2; animation: spin 30s linear infinite; transform: rotateX(60deg) rotateY(20deg); }
.orbit-node { position: absolute; background: var(--bg-dark); border: 1px solid var(--blue-main); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue-main); box-shadow: 0 0 15px var(--blue-glow); }
.node-1 { top: 0; left: 50%; transform: translate(-50%, -50%); animation: float 4s ease-in-out infinite; }
.node-2 { bottom: 20%; right: -10%; animation: float 5s ease-in-out infinite 1s; }
.node-3 { bottom: 20%; left: -10%; animation: float 6s ease-in-out infinite 2s; }
.orbit-avatar { width: 250px; height: 250px; position: relative; z-index: 5; filter: drop-shadow(0 0 20px var(--blue-glow)); animation: float 6s ease-in-out infinite; }
.avatar-img { width: 100%; height: 100%; object-fit: contain; opacity: 0.9; }

.hero-scroll-indicator { position: absolute; bottom: 40px; left: 8%; display: flex; align-items: center; gap: 15px; font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); letter-spacing: 3px; transform: rotate(90deg); transform-origin: left center; }
.scroll-line-anim { width: 60px; height: 1px; background: var(--border-color); position: relative; overflow: hidden; }
.scroll-line-anim::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: var(--blue-main); animation: scrollLine 2s infinite; }

/* Sections Common */
.section-header { display: flex; align-items: center; gap: 20px; margin-bottom: 60px; }
.section-num { font-family: var(--font-mono); font-size: 1rem; color: var(--text-muted); }
.section-title { font-size: 2.5rem; white-space: nowrap; }
.section-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--blue-main), transparent); opacity: 0.3; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 30px; }
.card-label { font-family: var(--font-mono); font-size: 0.8rem; color: var(--blue-main); margin-bottom: 20px; letter-spacing: 2px; }
.about-card p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-badges { display: flex; gap: 15px; margin-top: 30px; flex-wrap: wrap; }
.badge { padding: 8px 15px; background: rgba(0, 229, 255, 0.05); border: 1px solid var(--border-color); font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
.badge i { color: var(--blue-main); }
.tech-hexgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.hex-item { display: flex; align-items: center; gap: 15px; padding: 15px; border: 1px solid var(--border-color); background: rgba(0,0,0,0.3); transition: 0.3s; }
.hex-item:hover { border-color: var(--blue-main); background: rgba(0, 229, 255, 0.05); transform: translateX(5px); }
.hex-item i { font-size: 1.5rem; color: var(--blue-main); }
.hex-item span { font-family: var(--font-mono); font-size: 0.9rem; }
.about-stat-strip { grid-column: 1 / -1; display: flex; justify-content: space-between; padding: 40px; background: rgba(0,0,0,0.4); border: 1px solid var(--border-color); align-items: center; margin-top: 20px; }
.strip-stat { display: flex; align-items: baseline; gap: 5px; flex: 1; justify-content: center; }
.strip-num { font-size: 3rem; font-family: var(--font-mono); font-weight: 700; color: var(--text-primary); }
.strip-plus { font-size: 1.5rem; color: var(--blue-main); font-weight: 700; }
.strip-label { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; margin-left: 10px; width: min-content; }
.strip-divider { width: 1px; height: 50px; background: var(--border-color); }

/* Current Clients Section */
.clients-section { min-height: auto; padding: 60px 8%; }
.clients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.client-card { padding: 35px; position: relative; transition: 0.4s; border-top: 2px solid var(--blue-main); }
.client-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 30px rgba(0,229,255,0.05); }
.client-live-badge {
    display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
    font-size: 0.7rem; color: #00ff66; border: 1px solid rgba(0,255,102,0.3);
    padding: 5px 12px; margin-bottom: 25px; background: rgba(0,255,102,0.05);
    letter-spacing: 1px;
}
.live-dot {
    width: 7px; height: 7px; background: #00ff66; border-radius: 50%;
    box-shadow: 0 0 8px #00ff66; animation: pulse 2s infinite;
}
.client-top { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.client-logo-wrap {
    width: 70px; height: 70px; flex-shrink: 0; position: relative;
    border: 1px solid var(--blue-main); background: rgba(0,229,255,0.05);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.client-logo { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.client-icon-fallback {
    display: none; width: 100%; height: 100%;
    align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--blue-main);
}
.client-meta h3 { font-size: 1.3rem; margin-bottom: 5px; }
.client-type { font-family: var(--font-mono); font-size: 0.8rem; color: var(--blue-main); letter-spacing: 1px; }
.client-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 25px; }
.client-services { display: flex; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--border-color); padding-top: 20px; }
.client-services span { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); }
.client-services i { color: var(--blue-main); font-size: 0.7rem; }

@media (max-width: 768px) {
    .clients-grid { grid-template-columns: 1fr; }
}

/* Services Section */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.service-panel { display: flex; flex-direction: column; transition: 0.4s; top: 0; }
.service-panel:hover { border-color: var(--blue-main); box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1); transform: translateY(-10px); }
.service-index { position: absolute; top: -10px; right: 20px; font-size: 4rem; font-family: var(--font-mono); font-weight: 800; color: rgba(255,255,255,0.03); z-index: 0; }
.service-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; z-index: 1; position: relative; }
.service-icon-wrap { width: 60px; height: 60px; border: 1px solid var(--blue-main); display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: var(--blue-main); background: rgba(0,0,0,0.5); }
.service-arrow { color: var(--text-muted); font-size: 1.2rem; transition: 0.3s; transform: rotate(-45deg); }
.service-panel:hover .service-arrow { color: var(--blue-main); transform: rotate(0deg); }
.service-panel h3 { font-size: 1.4rem; margin-bottom: 15px; z-index: 1; position: relative; }
.service-panel p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; z-index: 1; position: relative; }
.service-bullets { list-style: none; margin-bottom: 25px; z-index: 1; position: relative; }
.service-bullets li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #ccc; margin-bottom: 10px; }
.service-bullets li::before { content: '>'; color: var(--blue-main); font-family: var(--font-mono); font-weight: bold; }
.service-tags { display: flex; gap: 10px; flex-wrap: wrap; z-index: 1; position: relative; border-top: 1px solid var(--border-color); padding-top: 20px; }
.service-tags span { font-family: var(--font-mono); font-size: 0.75rem; color: var(--blue-main); background: rgba(0, 229, 255, 0.05); padding: 4px 10px; border: 1px solid var(--border-color); }
.featured-service { border-color: var(--blue-main); box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.05); }
.featured-badge { position: absolute; top: 0; left: 0; background: var(--blue-main); color: #000; font-family: var(--font-mono); font-size: 0.7rem; font-weight: bold; padding: 5px 15px; letter-spacing: 1px; z-index: 2; }

/* Portfolio Section */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.port-card { padding: 0; display: flex; flex-direction: column; }
.port-img { height: 200px; position: relative; overflow: hidden; display: flex; justify-content: center; align-items: center; border-bottom: 1px solid var(--border-color); }
.port-icon-large { font-size: 4rem; color: rgba(255,255,255,0.1); transition: 0.4s; }
.port-card:hover .port-icon-large { transform: scale(1.2); color: rgba(0, 229, 255, 0.2); }
.port-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center; opacity: 0; transition: 0.3s; backdrop-filter: blur(5px); }
.port-card:hover .port-overlay { opacity: 1; }
.port-link-btn { width: 50px; height: 50px; background: var(--blue-main); color: #000; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; transform: translateY(20px); transition: 0.3s; }
.port-card:hover .port-link-btn { transform: translateY(0); }
.port-info { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.port-cat { font-family: var(--font-mono); font-size: 0.7rem; color: var(--blue-main); margin-bottom: 10px; display: block; letter-spacing: 1px; }
.port-info h3 { font-size: 1.3rem; margin-bottom: 10px; }
.port-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.port-tech { display: flex; gap: 10px; }
.port-tech span { font-family: var(--font-mono); font-size: 0.75rem; color: #888; border-bottom: 1px solid #333; padding-bottom: 2px; }

/* Skills Section */
.skills-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.skills-list { display: flex; flex-direction: column; gap: 25px; }
.skill-row { display: flex; flex-direction: column; gap: 8px; }
.skill-meta { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.9rem; }
.skill-pct { color: var(--blue-main); }
.skill-bar-bg { width: 100%; height: 4px; background: rgba(255,255,255,0.05); overflow: hidden; position: relative; }
.skill-bar-fill { height: 100%; width: 0%; background: var(--blue-main); box-shadow: 0 0 10px var(--blue-glow); transition: width 1.5s cubic-bezier(0.1, 0.8, 0.3, 1); }
.skills-radar-placeholder { display: flex; justify-content: center; align-items: center; }

/* Contact Section */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-tag { font-family: var(--font-mono); font-size: 0.8rem; color: var(--blue-main); margin-bottom: 15px; letter-spacing: 2px; }
.contact-info h3 { font-size: 2.2rem; margin-bottom: 20px; line-height: 1.2; text-transform: none; }
.contact-info p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 40px; }
.contact-direct-links { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.direct-link { display: flex; align-items: center; gap: 20px; text-decoration: none; padding-bottom: 15px; border-bottom: 1px solid var(--border-color); transition: 0.3s; }
.direct-link:hover { border-color: var(--blue-main); transform: translateX(10px); }
.direct-link i { font-size: 1.5rem; color: var(--text-primary); transition: 0.3s; }
.direct-link:hover i { color: var(--blue-main); }
.dl-label { display: block; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; }
.dl-value { display: block; font-size: 1.1rem; color: var(--text-primary); }
.youtube-link-card { display: flex; align-items: center; gap: 20px; padding: 20px; background: rgba(255, 0, 0, 0.05); border: 1px solid rgba(255, 0, 0, 0.2); border-radius: 8px; }
.youtube-link-card i { font-size: 2.5rem; color: #ff0000; }
.yt-name { display: block; font-weight: bold; font-size: 1.2rem; margin-bottom: 5px; }
.yt-sub-btn { display: inline-block; padding: 5px 15px; background: #ff0000; color: #fff; text-decoration: none; font-size: 0.8rem; font-family: var(--font-mono); text-transform: uppercase; border-radius: 4px; }

.contact-form-wrap form { display: flex; flex-direction: column; gap: 25px; }
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field label { font-family: var(--font-mono); font-size: 0.8rem; color: var(--blue-main); letter-spacing: 1px; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 15px; background: rgba(0,0,0,0.4); border: 1px solid var(--border-color); color: var(--text-primary); font-family: var(--font-mono); font-size: 1rem; outline: none; transition: 0.3s; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue-main); background: rgba(0, 229, 255, 0.05); box-shadow: 0 0 15px rgba(0, 229, 255, 0.1); }
.form-success { display: none; padding: 15px; background: rgba(0, 255, 102, 0.1); border: 1px solid #00ff66; color: #00ff66; font-family: var(--font-mono); font-size: 0.9rem; align-items: center; gap: 10px; margin-top: 15px; }

/* Footer */
.site-footer { padding: 40px 8%; border-top: 1px solid var(--border-color); background: rgba(2, 2, 5, 0.9); }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: var(--font-mono); font-size: 1.2rem; font-weight: bold; }
.footer-copy { color: var(--text-muted); font-size: 0.9rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); font-size: 1.2rem; transition: 0.3s; }
.footer-links a:hover { color: var(--blue-main); }

/* Animations */
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(0, 255, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); } }
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes scrollLine { 100% { left: 100%; } }

/* Reveal Animation Class */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.1, 0.8, 0.3, 1); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-center { flex-direction: column-reverse; text-align: center; gap: 40px; margin-top: 80px; }
    .hero-actions { justify-content: center; }
    .hero-bio { margin: 0 auto 40px auto; }
    .hero-hud-grid { display: none; }
}

@media (max-width: 992px) {
    .main-content { margin-left: 0; }
    .side-nav { display: none; }
    .mobile-header { display: flex; }
    .section { padding: 120px 5% 60px 5%; }
    .about-grid { grid-template-columns: 1fr; }
    .skills-wrapper { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-stat-strip { flex-wrap: wrap; gap: 30px; }
    .strip-divider { display: none; }
    .strip-stat { flex-basis: 40%; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .hero-name { font-size: 3.5rem; }
    .hero-role-ticker { font-size: 1.1rem; justify-content: center; }
    .hero-orbit-wrapper { transform: scale(0.7); height: 250px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .cta-buttons { flex-direction: column; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
    .hero-actions { flex-direction: column; }
    .cursor-dot, .cursor-ring { display: none !important; }
    * { cursor: auto !important; }
}
