:root {
    --c1: #0f0c29;
    --pink: #f72585;
    --violet: #7209b7;
    --blue: #4361ee;
    --cyan: #4cc9f0;
    --teal: #06d6a0;
    --text: #f0eeff;
    --muted: rgba(240,238,255,0.55);
    --glass: rgba(255,255,255,0.07);
    --glass-border: rgba(255,255,255,0.15);
    --glass-hover: rgba(255,255,255,0.12);
    --blur: blur(18px);
    --font-head: 'Cabinet Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--c1);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.75;
    overflow-x: hidden;
}

/* ORBS */
.orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: drift 18s ease-in-out infinite alternate;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7209b7, transparent 70%);
    top: -150px;
    left: -100px;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4361ee, transparent 70%);
    top: 30%;
    right: -150px;
    animation-delay: -5s;
}

.orb3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f72585, transparent 70%);
    bottom: 10%;
    left: 20%;
    animation-delay: -10s;
}

.orb4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #4cc9f0, transparent 70%);
    bottom: -100px;
    right: 10%;
    animation-delay: -7s;
}

@keyframes drift {
    from {
        transform: translate(0,0) scale(1);
    }

    to {
        transform: translate(40px,30px) scale(1.08);
    }
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3.5rem;
    background: rgba(15,12,41,0.6);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.15rem;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--cyan);
        }

.wrap {
    position: relative;
    z-index: 10;
}

section {
    padding: 5.5rem 4rem;
}

/* GLASS */
.glass {
    background: var(--glass);
    backdrop-filter: var(--blur) saturate(160%);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

    .glass:hover {
        background: var(--glass-hover);
        transform: translateY(-5px);
        box-shadow: 0 16px 48px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
    }

/* HEADERS */
.s-tag {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.6rem;
}

h2.s-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.s-bar {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    border-radius: 2px;
    margin-bottom: 3rem;
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 4rem 4rem;
}

.hero-inner {
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 2rem;
    padding: 0.4rem 1.1rem;
    font-size: 0.75rem;
    color: var(--cyan);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeUp 0.7s ease both;
}

.dot-live {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--teal);
    animation: blink 1.6s infinite;
}

@keyframes blink {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

h1.hero-name {
    font-family: var(--font-head);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 1.2rem;
    animation: fadeUp 0.7s 0.1s ease both;
}

.name-line1 {
    color: var(--text);
    display: block;
}

.name-line2 {
    display: block;
    background: linear-gradient(135deg, var(--pink) 0%, var(--violet) 40%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s 0.2s ease both;
}

    .hero-sub strong {
        color: var(--cyan);
        font-weight: 500;
    }

.hero-desc {
    font-size: 0.95rem;
    color: rgba(240,238,255,0.65);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.85;
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.4s ease both;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.04em;
}

.btn-glow {
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: #fff;
    border: none;
    box-shadow: 0 0 20px rgba(247,37,133,0.4);
}

    .btn-glow:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 36px rgba(247,37,133,0.65);
    }

.btn-glass {
    background: var(--glass);
    backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    color: var(--text);
    transition: all 0.25s ease;
}

    .btn-glass:hover {
        border-color: var(--cyan);
        color: var(--cyan);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.25); 
    }
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.5s ease both;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
}

.about-card {
    padding: 2.5rem;
}

    .about-card p {
        color: rgba(240,238,255,0.7);
        margin-bottom: 1rem;
        font-size: 0.92rem;
    }

.info-rows {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    padding: 0.85rem 1.1rem;
    transition: all 0.2s;
}

    .info-row:hover {
        background: rgba(255,255,255,0.09);
        border-color: rgba(76,201,240,0.4);
    }

.ir-icon {
    font-size: 1rem;
    width: 22px;
    text-align: center;
}

.ir-label {
    font-size: 0.68rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ir-val {
    font-size: 0.87rem;
    color: var(--text);
}

    .ir-val a {
        color: var(--cyan);
        text-decoration: none;
    }

        .ir-val a:hover {
            text-decoration: underline;
        }

/* SKILLS */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
}

.skill-card {
    padding: 1.8rem;
}

.sk-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

    .sk-head span {
        font-size: 1rem;
    }

.c-pink {
    color: var(--pink);
}

.c-cyan {
    color: var(--cyan);
}

.c-teal {
    color: var(--teal);
}

.c-violet {
    color: #b06aff;
}

.c-blue {
    color: #7b9fff;
}

.c-yellow {
    color: #ffd166;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.75rem;
    transition: transform 0.2s;
}

    .tag:hover {
        transform: translateY(-2px);
    }

.t-pink {
    background: rgba(247,37,133,0.12);
    border: 1px solid rgba(247,37,133,0.3);
    color: #ff85b3;
}

.t-cyan {
    background: rgba(76,201,240,0.1);
    border: 1px solid rgba(76,201,240,0.3);
    color: #8ce8ff;
}

.t-teal {
    background: rgba(6,214,160,0.1);
    border: 1px solid rgba(6,214,160,0.3);
    color: #6fffd4;
}

.t-violet {
    background: rgba(114,9,183,0.15);
    border: 1px solid rgba(176,106,255,0.3);
    color: #c99dff;
}

.t-gray {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--muted);
}

.t-yellow {
    background: rgba(255,209,102,0.1);
    border: 1px solid rgba(255,209,102,0.3);
    color: #ffe08a;
}

/* PROJECTS */
.proj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px,1fr));
    gap: 1.5rem;
}

.proj-card {
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
}

    .proj-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg,var(--pink),var(--violet),var(--cyan));
        opacity: 0;
        transition: opacity 0.3s;
    }

    .proj-card:hover::before {
        opacity: 1;
    }

.proj-year {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.proj-card h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.3rem;
}

.proj-role {
    font-size: 0.8rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.proj-desc {
    color: rgba(240,238,255,0.6);
    font-size: 0.87rem;
    margin-bottom: 1.2rem;
    line-height: 1.75;
}

.proj-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

    .proj-features li {
        font-size: 0.82rem;
        color: rgba(240,238,255,0.7);
        padding: 0.22rem 0 0.22rem 1.3rem;
        position: relative;
    }

        .proj-features li::before {
            content: '>';
            position: absolute;
            left: 0;
            color: var(--pink);
        }

.proj-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* EXPERIENCE */
.exp-card {
    padding: 2rem 2.2rem;
    margin-bottom: 1.2rem;
}

.exp-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

    .exp-top h3 {
        font-family: var(--font-head);
        font-size: 1.1rem;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

.exp-badge {
    font-size: 0.72rem;
    background: rgba(76,201,240,0.12);
    border: 1px solid rgba(76,201,240,0.3);
    color: var(--cyan);
    padding: 0.2rem 0.75rem;
    border-radius: 2rem;
}

.exp-co {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

/* EDUCATION */
.edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 1.1rem;
}

.edu-card {
    padding: 1.6rem;
}

.edu-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border-radius: 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    line-height: 1;
}

.done {
    color: var(--teal);
    background: rgba(6, 214, 160, 0.12);
    border: 1px solid rgba(6, 214, 160, 0.3);
}

.progress {
    color: var(--pink);
    background: rgba(247, 37, 133, 0.12);
    border: 1px solid rgba(247, 37, 133, 0.3);
}

.edu-card h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.edu-card p {
    font-size: 0.8rem;
    color: var(--muted);
}

/* CONTACT */
.contact-box {
    max-width: 640px;
    padding: 3rem;
}

.contact-intro {
    color: rgba(240,238,255,0.65);
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.c-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 2rem;
}

.c-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: var(--text);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.85rem;
    padding: 1rem 1.4rem;
    transition: all 0.25s;
}

    .c-link:hover {
        background: rgba(76,201,240,0.08);
        border-color: rgba(76,201,240,0.4);
        transform: translateX(6px);
        box-shadow: 0 0 20px rgba(76,201,240,0.1);
    }

.c-icon {
    font-size: 1.1rem;
    width: 26px;
    text-align: center;
}

.c-lbl {
    font-size: 0.68rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.c-val {
    font-size: 0.88rem;
    color: var(--cyan);
}

footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    font-size: 0.75rem;
    color: var(--muted);
    border-top: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .proj-actions {
        margin-top: 1.2rem;
    }

    #hero {
        padding: 6rem 1.5rem 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }
}
