:root {
    --goku-gold: #38bdf8; /* Modern high-fidelity sky blue */
    --goku-blue: #0ea5e9; /* Professional royal cyan-blue */
    --goku-aura: rgba(56, 189, 248, 0.08);
    --goku-dark: #070a13; /* Pure dark tech palette */
    --goku-deeper: #03050a;
    --goku-red: #f43f5e;
    --ki-cyan: #06b6d4;
    --ui-silver: #cbd5e1;
    --emerald-green: #10b981;
    --course-purple: #8b5cf6;
    
    /* Modern Professional Easings */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }

body {
    background: var(--goku-dark);
    color: #f8fafc;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 30%, rgba(56, 189, 248, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Premium Entry Animations */
@keyframes elegantFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.99);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes linkSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeDown { from { opacity: 0; transform: translate(-50%, -10px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* Global Stagger/Delay Activation Classes */
.stagger-active {
    opacity: 0;
    animation: elegantFadeInUp 0.8s var(--ease-out-expo) both;
}

#particles-js {
    position: fixed;
    width: 100vw; height: 100vh;
    z-index: 2;
    opacity: 0.25;
    pointer-events: none;
}

.ki-burst {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

/* Navbar Interface */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: rgba(7, 10, 19, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 36px;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeDown 0.5s cubic-bezier(0.175,0.885,0.32,1.1);
}

.logo-container { display: flex; align-items: center; }
.navbar h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 4px;
    font-size: 1.25rem;
    color: #fff;
}
.navbar h2 span {
    color: var(--goku-gold);
}

/* Desktop navigation links */
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-item {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    color: #94a3b8;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    cursor: pointer;
}
.nav-item:hover {
    color: var(--goku-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    z-index: 101;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Sidebar Navigation Drawer */
.side-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 5, 10, 0.85);
    backdrop-filter: blur(6px);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s var(--ease-out-expo);
}
.side-overlay.active { opacity: 1; visibility: visible; }

.side-menu {
    position: fixed;
    top: 0; right: -320px;
    width: 300px;
    height: 100vh;
    z-index: 200;
    transition: right 0.4s var(--ease-out-expo);
}
.side-menu.active { right: 0; }
.side-menu-inner {
    height: 100%;
    background: #070a13;
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    padding: 80px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.side-close {
    position: absolute;
    top: 22px; right: 22px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 8px;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
}
.side-menu-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.side-nav { display: flex; flex-direction: column; gap: 8px; }
.side-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    color: #94a3b8;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    background: rgba(255,255,255,0.01);
    opacity: 0;
    transform: translateX(40px);
}

.side-menu.active .side-link {
    animation: linkSlideInRight 0.5s var(--ease-out-expo) both;
}
.side-menu.active .side-link:nth-child(1) { animation-delay: 0.08s; }
.side-menu.active .side-link:nth-child(2) { animation-delay: 0.14s; }
.side-menu.active .side-link:nth-child(3) { animation-delay: 0.20s; }

.side-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-4px);
}

.section-anchor { position: relative; top: -100px; }

/* Desktop-First Grid Hero Showcase */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 5;
    padding: 140px 60px 80px;
}
.hero-bg-aura {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(7, 10, 19, 0.4) 0%, var(--goku-dark) 80%);
}

.hero-grid-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    z-index: 10;
}

.hero-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 24px;
    animation: elegantFadeInUp 0.8s var(--ease-out-expo) both;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--emerald-green);
    box-shadow: 0 0 10px var(--emerald-green);
}
.status-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--emerald-green);
    letter-spacing: 1.5px;
}

.hero-title-main {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 12px;
    animation: elegantFadeInUp 0.8s 0.1s var(--ease-out-expo) both;
}

.hero-sub-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--goku-gold);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: elegantFadeInUp 0.8s 0.15s var(--ease-out-expo) both;
}

.hero-subtitle {
    font-size: 1.02rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 35px;
    animation: elegantFadeInUp 0.8s 0.2s var(--ease-out-expo) both;
}

/* Button to trigger store directly from Hero */
.btn-store-launcher {
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--goku-blue), #1e1b4b);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
    animation: elegantFadeInUp 0.8s 0.25s var(--ease-out-expo) both;
}
.btn-store-launcher:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.35);
    border-color: var(--goku-gold);
}

/* Developer Right Side Image Showcase */
.hero-right-col {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: elegantFadeInUp 1s 0.2s var(--ease-out-expo) both;
}
.dev-avatar-container {
    position: relative;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Float Animation for Goku Image */
.goku-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
}
.goku-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 35px rgba(56, 189, 248, 0.25));
    animation: floatGoku 6s ease-in-out infinite;
}
@keyframes floatGoku {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 0.8s 0.6s forwards;
}
.scroll-hint span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #64748b;
}
.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--goku-gold), transparent);
    animation: scrollArrow 1.5s ease-in-out infinite;
}
@keyframes scrollArrow {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.action-section {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px 40px;
    z-index: 20;
    text-align: center;
}

/* About block & Ticker */
.about-card-block {
    text-align: left;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.about-card-block strong {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 12px;
}
.about-text-content {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Sliding Marquee Ticker */
.ticker-wrap {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
    margin-bottom: 40px;
    border-radius: 8px;
}
.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: tickerMove 22s linear infinite;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #94a3b8;
}
.ticker-content span {
    display: inline-block;
    padding-right: 30px;
}
.ticker-sep {
    color: var(--goku-gold);
}
.counter-highlight {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

@keyframes tickerMove {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Metadata Block Section styling */
.section-block-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #64748b;
    margin-bottom: 24px;
    text-align: left;
}
.metadata-block {
    margin-bottom: 40px;
}
.metadata-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: left;
}
.metadata-item-card {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.meta-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.82rem;
    color: #64748b;
    letter-spacing: 1px;
}
.meta-val {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.88rem;
    color: #fff;
    font-weight: 700;
}

/* Skills blocks */
.skills-block {
    margin-bottom: 40px;
}
.skills-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.skill-card-new {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s var(--ease-out-expo);
}
.skill-card-new i {
    font-size: 1.3rem;
    color: var(--goku-gold);
}
.skill-card-new span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    color: #cbd5e1;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}
.skill-card-new:hover {
    border-color: rgba(56, 189, 248, 0.25);
    background: rgba(255,255,255,0.02);
    transform: translateY(-4px);
}

/* Demo websites block and infinite RTL horizontal scrolling track */
.demo-websites-block {
    margin-bottom: 40px;
}
.demo-websites-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.demo-websites-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: demoScrollLeft 30s linear infinite;
}
.demo-websites-track:hover {
    animation-play-state: paused;
}
@keyframes demoScrollLeft {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
.demo-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 24px;
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s var(--ease-out-expo);
    backdrop-filter: blur(10px);
    text-align: left;
}
.demo-card:hover {
    border-color: rgba(56, 189, 248, 0.25);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-4px);
}
.demo-header {
    margin-bottom: 12px;
}
.demo-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}
.demo-desc {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
}
.demo-btn {
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 10px 18px;
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: var(--goku-gold);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    transition: all 0.2s var(--ease-out-expo);
}
.demo-btn:hover {
    background: var(--goku-blue);
    color: #fff;
    border-color: var(--goku-blue);
}

/* Socials circular rows block styling */
.socials-circle-block {
    margin-bottom: 60px;
}
.socials-circular-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.circle-social {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Specific branding colors on circular elements */
.circle-social.tiktok:hover {
    color: #fff;
    background: #000000;
    border-color: #00f2fe;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
    transform: translateY(-4px) scale(1.05);
}
.circle-social.youtube:hover {
    color: #fff;
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    transform: translateY(-4px) scale(1.05);
}
.circle-social.whatsapp:hover {
    color: #fff;
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-4px) scale(1.05);
}

.watermark-container {
    margin-top: 40px;
    padding-bottom: 20px;
    opacity: 0;
    animation: elegantFadeInUp 0.8s 0.4s var(--ease-out-expo) forwards;
}
.watermark {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    color: #475569;
    letter-spacing: 2px;
    display: inline-block;
}

/* Redesigned Premium Modern Corporate Footer */
.footer-block {
    background: #03050a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: left;
    position: relative;
    z-index: 10;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
.footer-col-about h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-weight: 900;
}
.footer-col-about h4 span {
    color: var(--goku-gold);
}
.footer-col-about p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 360px;
    margin-bottom: 24px;
}
.footer-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 6px 14px;
    border-radius: 8px;
    width: max-content;
}
.status-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--emerald-green);
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.status-badge-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    color: var(--emerald-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-weight: 700;
}
.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-col-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.footer-arrow {
    font-size: 0.65rem;
    color: var(--goku-gold);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
}
.footer-col-links a:hover {
    color: #fff;
}
.footer-col-links a:hover .footer-arrow {
    opacity: 1;
    transform: translateX(0);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    font-size: 0.82rem;
    color: #475569;
}
.footer-copy {
    line-height: 1.5;
}
.footer-bottom-links {
    display: flex;
    gap: 16px;
    align-items: center;
}
.footer-bottom-links a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
    color: #64748b;
}
.footer-divider {
    color: #1e293b;
}

/* Launcher Actions */
.btn-launch {
    width: 100%;
    padding: 24px;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.01);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    animation: elegantFadeInUp 0.8s 0.1s var(--ease-out-expo) forwards;
}
.btn-launch:hover {
    border-color: var(--goku-gold);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.15);
    background: rgba(56, 189, 248, 0.02);
    transform: translateY(-4px);
}
.btn-launch.is-processing {
    background: rgba(56, 189, 248, 0.05);
    color: var(--goku-gold);
    border-color: var(--goku-gold);
    pointer-events: none;
    transform: scale(0.98);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-section { padding: 120px 30px 60px; }
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-left-col { align-items: center; text-align: center; }
    .hero-title-main { font-size: 2.8rem; }
    .hero-subtitle { max-width: 100%; }
    .dev-avatar-container { max-width: 100%; }
    .metadata-grid { grid-template-columns: 1fr; }
    .skills-grid-new { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .navbar { padding: 12px 24px; top: 16px; }
    .hero-title-main { font-size: 2.4rem; }
    .skills-grid-new { grid-template-columns: 1fr; }
}