
    /* ── Hero layout becomes two-column ── */
#hero {
    display: flex;
    align-items: stretch;
}

.hero-content {
    flex: 1 1 55%;
    min-width: 0;
}

/* ── Right panel ── */
.hero-right {
    flex: 0 0 42%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    pointer-events: none;
    z-index: 2;
}

/* ── Animated blob ── */
.blob-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blob {
    width: 520px;
    height: 520px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphBlob 9s ease-in-out infinite, spinBlob 18s linear infinite;
    position: absolute;
    opacity: 0.18;
}

.blob-1 {
    background: radial-gradient(circle at 40% 40%, #a78bfa, #6d28d9 60%, #1e1b4b);
    animation-delay: 0s;
}

.blob-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at 60% 30%, #34d399, #059669 55%, #064e3b);
    animation-delay: -4s;
    animation-duration: 11s, 22s;
    opacity: 0.14;
}

.blob-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 50% 60%, #fb923c, #ea580c 50%, #7c2d12);
    animation-delay: -7s;
    animation-duration: 13s, 26s;
    opacity: 0.12;
}

@keyframes morphBlob {
    0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    20%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    40%  { border-radius: 50% 60% 30% 60% / 30% 70% 60% 40%; }
    60%  { border-radius: 60% 40% 60% 30% / 70% 30% 40% 60%; }
    80%  { border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes spinBlob {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Coding illustration SVG wrapper ── */
.code-illus {
    position: relative;
    z-index: 3;
    width: 340px;
    max-width: 90%;
    filter: drop-shadow(0 8px 32px rgba(109, 40, 217, 0.18));
    animation: floatIllus 5s ease-in-out infinite;
}

@keyframes floatIllus {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

/* ── Floating mini badges ── */
.floating-badge {
    position: absolute;
    z-index: 4;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 8px 14px;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    pointer-events: none;
}

.badge-python {
    top: 18%;
    right: 4%;
    animation: badgeFloat1 6s ease-in-out infinite;
}

.badge-django {
    bottom: 22%;
    left: 2%;
    animation: badgeFloat2 7s ease-in-out infinite;
}

.badge-mysql {
    top: 60%;
    right: 6%;
    animation: badgeFloat3 5.5s ease-in-out infinite;
}

@keyframes badgeFloat1 {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50%       { transform: translateY(-10px) rotate(1deg); }
}

@keyframes badgeFloat2 {
    0%, 100% { transform: translateY(0px) rotate(1deg); }
    50%       { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes badgeFloat3 {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50%       { transform: translateY(-12px) rotate(2deg); }
}

/* ── Responsive: hide on small screens ── */
@media (max-width: 900px) {
    .hero-right {
        display: none;
    }
    .hero-content {
        flex: 1 1 100%;
    }
}

         /* Category filter tabs */
     .proj-filters {
         display: flex;
         gap: 0.5rem;
         flex-wrap: wrap;
         margin-bottom: 2.5rem;
     }
    .proj-filter-btn {
        font-family: 'DM Mono', monospace;
        font-size: 0.75rem;
        padding: 6px 16px;
        border-radius: 100px;
        border: 1px solid rgba(255,255,255,0.12);
        background: transparent;
        color: var(--muted, rgba(255,255,255,0.5));
        cursor: pointer;
        transition: all 0.25s;
        letter-spacing: 0.04em;
    }
    .proj-filter-btn:hover,
    .proj-filter-btn.active {
        background: var(--accent, #a78bfa);
        border-color: var(--accent, #a78bfa);
        color: #fff;
    }

    /* Live badge */
    .proj-live-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: 'DM Mono', monospace;
        font-size: 0.68rem;
        color: #34d399;
        border: 1px solid rgba(52,211,153,0.3);
        background: rgba(52,211,153,0.08);
        border-radius: 100px;
        padding: 3px 10px;
        margin-bottom: 0.8rem;
        letter-spacing: 0.05em;
    }
    .proj-live-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #34d399;
        animation: pulseDot 1.5s ease-in-out infinite;
    }
    @keyframes pulseDot {
        0%, 100% { opacity: 1; transform: scale(1); }
        50%       { opacity: 0.4; transform: scale(0.7); }
    }

    /* Academic badge */
    .proj-academic-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: 'DM Mono', monospace;
        font-size: 0.68rem;
        color: #60a5fa;
        border: 1px solid rgba(96,165,250,0.3);
        background: rgba(96,165,250,0.08);
        border-radius: 100px;
        padding: 3px 10px;
        margin-bottom: 0.8rem;
    }

    /* Highlight card (for featured project) */
    .project-card.featured {
        border-color: rgba(167,139,250,0.35);
        background: linear-gradient(135deg, rgba(167,139,250,0.06) 0%, rgba(109,40,217,0.04) 100%);
        position: relative;
        overflow: hidden;
    }
    .project-card.featured::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(167,139,250,0.07), transparent 60%);
        pointer-events: none;
    }

    /* Highlight strip on left */
    .project-card.featured .proj-strip {
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, #a78bfa, #6d28d9);
        border-radius: 3px 0 0 3px;
    }

    /* Feature list inside card */
    .proj-features {
        margin: 0.8rem 0 1rem;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .proj-features li {
        font-size: 0.82rem;
        color: var(--muted, rgba(255,255,255,0.55));
        padding-left: 1.1rem;
        position: relative;
        line-height: 1.5;
    }
    .proj-features li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--accent, #a78bfa);
        font-size: 0.75rem;
    }

    /* Section label for work vs academic */
    .proj-section-label {
        font-family: 'DM Mono', monospace;
        font-size: 0.7rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--muted, rgba(255,255,255,0.4));
        margin: 2.5rem 0 1.2rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }
    .proj-section-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,0.07);
    }

    :root {
        --bg: #0a0a0f;
        --surface: #12121a;
        --card: #1a1a26;
        --accent: #a78bfa;
        --accent2: #f472b6;
        --accent3: #34d399;
        --text: #e2e8f0;
        --muted: #64748b;
        --border: rgba(167,139,250,0.15);
        --glow: rgba(167,139,250,0.3);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
        background: var(--bg);
        color: var(--text);
        font-family: 'Outfit', sans-serif;
        overflow-x: hidden;
        cursor: none;
    }

    /* Custom cursor */
    .cursor {
        position: fixed; width: 12px; height: 12px;
        background: var(--accent); border-radius: 50%;
        pointer-events: none; z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
    }
    .cursor-ring {
        position: fixed; width: 36px; height: 36px;
        border: 1.5px solid var(--accent); border-radius: 50%;
        pointer-events: none; z-index: 9998;
        transform: translate(-50%, -50%);
        transition: all 0.15s ease;
        opacity: 0.6;
    }
    body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 20px; height: 20px; background: var(--accent2); }
    body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width: 50px; height: 50px; border-color: var(--accent2); }

    /* Noise overlay */
    body::before {
        content: '';
        position: fixed; inset: 0; z-index: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none; opacity: 0.4;
    }

    /* Navbar */
    nav {
        position: fixed; top: 0; left: 0; right: 0; z-index: 100;
        padding: 1.2rem 3rem;
        display: flex; justify-content: space-between; align-items: center;
        background: rgba(10,10,15,0.92);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        transition: all 0.3s;
    }
    .nav-logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem; font-weight: 700;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        letter-spacing: 0.02em; z-index: 102;
    }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
        color: var(--muted); text-decoration: none;
        font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
        font-weight: 500; transition: color 0.2s;
        position: relative;
    }
    .nav-links a::after {
        content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
        height: 1px; background: var(--accent);
        transform: scaleX(0); transform-origin: right;
        transition: transform 0.3s ease;
    }
    .nav-links a:hover { color: var(--accent); }
    .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

    /* Hamburger */
    .hamburger {
        display: none; flex-direction: column; gap: 5px;
        cursor: pointer; z-index: 102; padding: 4px;
        background: none; border: none;
    }
    .hamburger span {
        display: block; width: 24px; height: 2px;
        background: var(--text); border-radius: 2px;
        transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile drawer */
    .mobile-menu {
        display: none; position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,15,0.97);
        backdrop-filter: blur(20px);
        z-index: 101;
        flex-direction: column; align-items: center; justify-content: center;
        gap: 0;
        opacity: 0; pointer-events: none;
        transition: opacity 0.35s ease;
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; }
    .mobile-menu a {
        color: var(--muted); text-decoration: none;
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem; font-weight: 700;
        padding: 0.6rem 0; letter-spacing: 0.02em;
        transition: color 0.2s, transform 0.2s;
        opacity: 0; transform: translateY(20px);
    }
    .mobile-menu.open a {
        opacity: 1; transform: translateY(0);
    }
    .mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
    .mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
    .mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
    .mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
    .mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
    .mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }
    .mobile-menu a:hover { color: var(--accent); transform: translateX(6px); }
    .mobile-menu-email {
        margin-top: 2.5rem; font-family: 'DM Mono', monospace;
        font-size: 0.82rem; color: var(--muted);
        opacity: 0; transition: opacity 0.3s 0.35s;
    }
    .mobile-menu.open .mobile-menu-email { opacity: 1; }

    /* Hero */
    #hero {
        min-height: 100vh; display: flex; align-items: center;
        padding: 8rem 3rem 4rem;
        position: relative; overflow: hidden;
    }
    .hero-bg {
        position: absolute; inset: 0; z-index: 0;
        background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(167,139,250,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(244,114,182,0.06) 0%, transparent 50%);
    }
    .hero-grid {
        position: absolute; inset: 0; z-index: 0;
        background-image:
                linear-gradient(rgba(167,139,250,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(167,139,250,0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    }
    .hero-content { position: relative; z-index: 1; max-width: 800px; }
    .hero-tag {
        display: inline-flex; align-items: center; gap: 8px;
        background: rgba(167,139,250,0.1); border: 1px solid var(--border);
        padding: 6px 16px; border-radius: 100px;
        font-size: 0.78rem; color: var(--accent); letter-spacing: 0.1em;
        text-transform: uppercase; font-family: 'DM Mono', monospace;
        margin-bottom: 2rem;
        animation: fadeInDown 0.8s ease both;
    }
    .hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--accent3); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

    .hero-name {
        font-family: 'Playfair Display', serif;
        font-size: clamp(3.5rem, 8vw, 7rem);
        font-weight: 900; line-height: 1;
        letter-spacing: -0.02em;
        animation: fadeInUp 0.9s 0.1s ease both;
    }
    .hero-name .first { color: var(--text); }
    .hero-name .last {
        display: block;
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .hero-subtitle {
        margin-top: 1.5rem;
        font-size: 1.15rem; color: var(--muted); max-width: 500px;
        line-height: 1.7; font-weight: 300;
        animation: fadeInUp 1s 0.2s ease both;
    }
    .hero-subtitle strong { color: var(--accent); font-weight: 500; }
    .hero-cta {
        display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap;
        animation: fadeInUp 1s 0.3s ease both;
    }
    .btn-primary {
        padding: 14px 32px; border-radius: 8px;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        color: white; font-weight: 600; font-size: 0.9rem;
        text-decoration: none; border: none;
        transition: all 0.3s; letter-spacing: 0.03em;
        position: relative; overflow: hidden;
    }
    .btn-primary::after {
        content: ''; position: absolute; inset: 0;
        background: white; opacity: 0; transition: opacity 0.3s;
    }
    .btn-primary:hover::after { opacity: 0.12; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(167,139,250,0.35); }
    .btn-secondary {
        padding: 14px 32px; border-radius: 8px;
        background: transparent; color: var(--text);
        font-weight: 500; font-size: 0.9rem;
        text-decoration: none;
        border: 1px solid var(--border);
        transition: all 0.3s; letter-spacing: 0.03em;
    }
    .btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

    .hero-stats {
        display: flex; gap: 3rem; margin-top: 4rem;
        animation: fadeInUp 1s 0.4s ease both;
    }
    .stat-num {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem; font-weight: 700;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

    @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

    /* Sections */
    section { padding: 6rem 3rem; position: relative; }
    .section-label {
        font-family: 'DM Mono', monospace;
        font-size: 0.75rem; color: var(--accent); letter-spacing: 0.15em;
        text-transform: uppercase; margin-bottom: 0.75rem;
    }
    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
        line-height: 1.15; margin-bottom: 1rem;
    }
    .section-title em { font-style: italic; color: var(--accent); }
    .section-divider {
        width: 60px; height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--accent2));
        border-radius: 4px; margin-bottom: 3rem;
    }
    .container { max-width: 1100px; margin: 0 auto; }

    /* About */
    #about { background: var(--surface); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-text p { color: var(--muted); line-height: 1.9; margin-bottom: 1.2rem; font-size: 1.05rem; }
    .about-text p strong { color: var(--text); font-weight: 500; }
    .about-contact { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
    .contact-item {
        display: flex; align-items: center; gap: 12px;
        color: var(--muted); font-size: 0.9rem;
        font-family: 'DM Mono', monospace;
    }
    .contact-item .icon {
        width: 36px; height: 36px; border-radius: 8px;
        background: rgba(167,139,250,0.1); border: 1px solid var(--border);
        display: flex; align-items: center; justify-content: center;
        font-size: 0.9rem; flex-shrink: 0;
    }
    .about-visual {
        position: relative; display: flex; justify-content: center;
    }
    .profile-frame {
        width: 320px; height: 380px;
        background: linear-gradient(135deg, var(--card), var(--surface));
        border-radius: 20px 20px 80px 20px;
        border: 1px solid var(--border);
        display: flex; align-items: center; justify-content: center;
        position: relative; overflow: hidden;
    }
    .profile-frame img {
        width: 100%; height: 100%;
        object-fit: cover; object-position: top center;
        position: relative; z-index: 1;
        border-radius: 20px 20px 80px 20px;
    }
    .profile-frame::before {
        content: '';
        position: absolute; inset: 0;
        background: linear-gradient(135deg, rgba(167,139,250,0.1), rgba(244,114,182,0.05));
    }
    .profile-initials {
        font-family: 'Playfair Display', serif;
        font-size: 7rem; font-weight: 900;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        position: relative; z-index: 1; line-height: 1;
    }
    .profile-badge {
        position: absolute; bottom: -15px; right: -15px;
        background: var(--card); border: 1px solid var(--border);
        border-radius: 12px; padding: 12px 16px;
        text-align: center; backdrop-filter: blur(8px);
    }
    .badge-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--accent3); }
    .badge-text { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
    .profile-badge2 {
        position: absolute; top: -15px; left: -15px;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        border-radius: 12px; padding: 10px 14px;
        font-size: 0.78rem; color: white; font-weight: 600;
    }

    /* Skills */
    #skills {}
    .skills-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
    .skill-card {
        background: var(--card); border: 1px solid var(--border);
        border-radius: 16px; padding: 1.8rem;
        transition: all 0.3s; position: relative; overflow: hidden;
    }
    .skill-card::before {
        content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--accent2));
        transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
    }
    .skill-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
    .skill-card:hover::before { transform: scaleX(1); }
    .skill-icon { font-size: 2rem; margin-bottom: 1rem; }
    .skill-category { font-size: 0.75rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; font-family: 'DM Mono', monospace; margin-bottom: 0.5rem; }
    .skill-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
    .skill-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .tag {
        padding: 4px 10px; border-radius: 6px;
        background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.2);
        font-size: 0.78rem; color: var(--accent);
        font-family: 'DM Mono', monospace;
        transition: all 0.2s;
    }
    .tag:hover { background: rgba(167,139,250,0.2); }
    .tag.green { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.2); color: var(--accent3); }
    .tag.pink { background: rgba(244,114,182,0.1); border-color: rgba(244,114,182,0.2); color: var(--accent2); }

    /* Experience */
    #experience { background: var(--surface); }
    .exp-card {
        background: var(--card); border: 1px solid var(--border);
        border-radius: 20px; padding: 2.5rem; max-width: 800px;
        position: relative; overflow: hidden;
    }
    .exp-card::before {
        content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
        background: linear-gradient(180deg, var(--accent), var(--accent2));
    }
    .exp-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
    .exp-role { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; }
    .exp-company {
        display: inline-flex; align-items: center; gap: 6px;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        font-weight: 600; font-size: 1rem;
    }
    .exp-duration {
        background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.2);
        color: var(--accent3); padding: 6px 14px; border-radius: 100px;
        font-size: 0.8rem; font-family: 'DM Mono', monospace; white-space: nowrap;
    }
    .exp-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
    .exp-list li {
        padding-left: 1.5rem; position: relative;
        color: var(--muted); line-height: 1.7; font-size: 0.95rem;
    }
    .exp-list li::before {
        content: '→'; position: absolute; left: 0;
        color: var(--accent); font-size: 0.9rem;
    }

    /* Projects */
    #projects {}
    .projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 2rem; }
    .project-card {
        background: var(--card); border: 1px solid var(--border);
        border-radius: 20px; padding: 2rem;
        transition: all 0.4s; position: relative; overflow: hidden;
        display: flex; flex-direction: column;
    }
    .project-card::after {
        content: ''; position: absolute; inset: 0;
        background: linear-gradient(135deg, rgba(167,139,250,0.05), rgba(244,114,182,0.03));
        opacity: 0; transition: opacity 0.3s;
    }
    .project-card:hover { border-color: rgba(167,139,250,0.4); transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
    .project-card:hover::after { opacity: 1; }
    .project-num {
        font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        opacity: 0.2; position: absolute; top: 1rem; right: 1.5rem; line-height: 1;
    }
    .project-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; position: relative; z-index: 1; }
    .project-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.7; flex: 1; position: relative; z-index: 1; }
    .project-tech { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; position: relative; z-index: 1; }

    /* Education */
    #education { background: var(--surface); }
    .edu-timeline { position: relative; padding-left: 2rem; }
    .edu-timeline::before {
        content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px;
        background: linear-gradient(180deg, var(--accent), transparent);
    }
    .edu-item {
        position: relative; margin-bottom: 2.5rem;
    }
    .edu-item::before {
        content: ''; position: absolute; left: -2.4rem; top: 8px;
        width: 10px; height: 10px; border-radius: 50%;
        background: var(--accent); box-shadow: 0 0 0 4px rgba(167,139,250,0.2);
    }
    .edu-year {
        font-family: 'DM Mono', monospace; font-size: 0.8rem;
        color: var(--accent); margin-bottom: 0.4rem;
    }
    .edu-degree { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; }
    .edu-school { color: var(--muted); font-size: 0.9rem; }
    .edu-grade {
        display: inline-block; margin-top: 0.5rem;
        background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.2);
        color: var(--accent3); padding: 3px 10px; border-radius: 6px;
        font-size: 0.78rem; font-family: 'DM Mono', monospace;
    }

    /* Achievements */
    #achievements {}
    .ach-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; }
    .ach-item {
        background: var(--card); border: 1px solid var(--border);
        border-radius: 14px; padding: 1.5rem;
        display: flex; gap: 1rem; align-items: flex-start;
        transition: all 0.3s;
    }
    .ach-item:hover { border-color: var(--accent2); transform: translateY(-3px); }
    .ach-icon {
        width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
        background: linear-gradient(135deg, rgba(167,139,250,0.2), rgba(244,114,182,0.1));
        border: 1px solid var(--border);
        display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    }
    .ach-text { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
    .ach-text strong { color: var(--text); display: block; margin-bottom: 0.25rem; font-size: 0.95rem; }

    /* Soft skills */
    .soft-skills-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; }
    .soft-pill {
        padding: 10px 22px; border-radius: 100px;
        border: 1px solid var(--border);
        color: var(--muted); font-size: 0.88rem;
        transition: all 0.3s; background: var(--card);
    }
    .soft-pill:hover { border-color: var(--accent); color: var(--accent); background: rgba(167,139,250,0.08); }

    /* Languages */
    .lang-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
    .lang-chip {
        padding: 10px 20px; border-radius: 10px;
        background: var(--card); border: 1px solid var(--border);
        font-size: 0.88rem; font-weight: 500;
        display: flex; align-items: center; gap: 8px;
    }
    .lang-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent3); }

    /* Footer */
    footer {
        background: var(--surface);
        border-top: 1px solid var(--border);
        padding: 3rem; text-align: center;
    }
    .footer-name {
        font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        margin-bottom: 1rem;
    }
    .footer-text { color: var(--muted); font-size: 0.88rem; }
    .footer-email {
        display: inline-block; margin-top: 1rem;
        color: var(--accent); font-family: 'DM Mono', monospace; font-size: 0.9rem;
        text-decoration: none; border-bottom: 1px solid transparent;
        transition: border-color 0.2s;
    }
    .footer-email:hover { border-color: var(--accent); }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* Responsive */
    @media (max-width: 768px) {
        body { cursor: auto; }
        .cursor, .cursor-ring { display: none; }

        nav { padding: 1rem 1.5rem; }
        .nav-links { display: none; }
        .hamburger { display: flex; }
        .mobile-menu { display: flex; }

        section { padding: 4rem 1.5rem; }
        #hero { padding: 7rem 1.5rem 4rem; }

        .hero-name { font-size: clamp(3rem, 13vw, 5rem); }
        .hero-subtitle { font-size: 1rem; }
        .hero-cta { flex-direction: column; }
        .btn-primary, .btn-secondary { text-align: center; }
        .hero-stats { gap: 1.5rem; }
        .stat-num { font-size: 1.8rem; }

        .about-grid { grid-template-columns: 1fr; gap: 2rem; }
        .about-visual { order: -1; }
        .profile-frame { width: 260px; height: 300px; }
        .profile-initials { font-size: 5rem; }

        .skills-grid { grid-template-columns: 1fr; }

        .exp-card { padding: 1.5rem; }
        .exp-role { font-size: 1.2rem; }

        .projects-grid { grid-template-columns: 1fr; }

        .ach-grid { grid-template-columns: 1fr; }

        .soft-skills-row { gap: 0.75rem; }
        .soft-pill { font-size: 0.82rem; padding: 8px 16px; }

        .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

        .edu-timeline { padding-left: 1.5rem; }
        .edu-item::before { left: -1.9rem; }
    }

    @media (max-width: 480px) {
        nav { padding: 0.9rem 1.2rem; }
        section { padding: 3rem 1.2rem; }
        #hero { padding: 6rem 1.2rem 3rem; }
        .hero-stats { gap: 1rem; }
        .stat-num { font-size: 1.5rem; }
        .stat-label { font-size: 0.68rem; }
        .profile-frame { width: 220px; height: 260px; }
    }
    /* Footer socials */
    .footer-socials {
        display: flex; gap: 1rem; justify-content: center;
        margin-top: 1.5rem; flex-wrap: wrap;
    }
    .social-btn {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 10px 22px; border-radius: 10px;
        font-size: 0.88rem; font-weight: 600;
        text-decoration: none; border: 1px solid var(--border);
        transition: all 0.3s; background: var(--card);
    }
    .social-btn.linkedin { color: #0a66c2; border-color: rgba(10,102,194,0.3); }
    .social-btn.linkedin:hover {
        background: rgba(10,102,194,0.15);
        border-color: #0a66c2;
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(10,102,194,0.25);
    }
    .social-btn.email-btn { color: var(--accent2); border-color: rgba(244,114,182,0.3); }
    .social-btn.email-btn:hover {
        background: rgba(244,114,182,0.1);
        border-color: var(--accent2);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(244,114,182,0.2);
    }

    /* Hero social links */
    .hero-socials {
        display: flex; gap: 0.75rem; margin-top: 2rem;
        animation: fadeInUp 1s 0.45s ease both;
    }
    .hero-social-link {
        width: 42px; height: 42px; border-radius: 10px;
        background: var(--card); border: 1px solid var(--border);
        display: flex; align-items: center; justify-content: center;
        color: var(--muted); text-decoration: none;
        transition: all 0.3s;
    }
    .hero-social-link:hover {
        border-color: var(--accent); color: var(--accent);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(167,139,250,0.2);
    }
    .hero-social-link.li:hover { border-color: #0a66c2; color: #0a66c2; box-shadow: 0 8px 20px rgba(10,102,194,0.2); }

    /* Back to top */
    .back-to-top {
        position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
        width: 48px; height: 48px; border-radius: 12px;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        border: none; color: white;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer;
        opacity: 0; transform: translateY(20px) scale(0.8);
        transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
        pointer-events: none;
        box-shadow: 0 4px 20px rgba(167,139,250,0.4);
    }
    .back-to-top.visible {
        opacity: 1; transform: translateY(0) scale(1);
        pointer-events: all;
    }
    .back-to-top:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 10px 30px rgba(167,139,250,0.5);
    }
    .back-to-top:active { transform: scale(0.95); }

    @media (max-width: 768px) {
        .back-to-top { bottom: 1.5rem; right: 1.5rem; width: 44px; height: 44px; }
    }
