*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    cursor: none
}

body {
    font-family: 'Outfit', sans-serif;
    background: #080c12;
    color: #c8d0e0;
    overflow-x: hidden;
    line-height: 1.6
}

/* CURSOR */
#cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #7c6fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
    will-change: left, top
}

#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(124, 111, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, opacity .25s;
    will-change: left, top
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: transparent
}

::-webkit-scrollbar-thumb {
    background: #7c6fff;
    border-radius: 2px
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 6%;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    background: rgba(8, 12, 18, 0.85)
}

.nav-logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    text-decoration: none
}

.nav-logo em {
    color: #7c6fff;
    font-style: normal
}

.nav-links {
    display: flex;
    gap: 34px;
    list-style: none;
    align-items: center
}

.nav-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .2s;
    position: relative
}

.nav-links a:not(.nav-hire)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #7c6fff;
    transition: width .25s
}

.nav-links a:hover {
    color: #fff
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

.nav-links a.active {
    color: #fff
}

.nav-hire {
    background: #7c6fff !important;
    color: #fff !important;
    padding: 9px 22px !important;
    border-radius: 7px !important;
    font-weight: 600 !important;
    transition: background .2s, transform .15s !important
}

.nav-hire:hover {
    background: #6a5de8 !important;
    transform: translateY(-1px) !important
}

.nav-hire::after {
    display: none !important
}

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 6% 60px;
    position: relative;
    overflow: hidden
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(124, 111, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 111, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.orb1 {
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(124, 111, 255, 0.13) 0%, transparent 70%);
    top: -160px;
    right: -80px
}

.orb2 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
    bottom: 80px;
    left: 4%
}

.orb3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.07) 0%, transparent 70%);
    top: 40%;
    left: 42%
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px
}

.hero-greeting {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #7c6fff;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp .6s .05s forwards;
    visibility: visible
}

.wave {
    display: inline-block;
    animation: wave 2.4s ease-in-out infinite
}

@keyframes wave {

    0%,
    100% {
        transform: rotate(0)
    }

    30% {
        transform: rotate(20deg)
    }

    60% {
        transform: rotate(-8deg)
    }
}

.hero-name {
    font-size: clamp(54px, 8.5vw, 96px);
    font-weight: 900;
    color: #fff;
    line-height: .98;
    letter-spacing: -3px;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeUp .65s .12s forwards
}

.hero-name .stroke {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(124, 111, 255, 0.55)
}

.hero-role {
    font-size: clamp(17px, 2.2vw, 24px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: .8px;
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeUp .65s .2s forwards
}

.hero-role b {
    color: #a78bfa;
    font-weight: 600
}

.hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.48);
    max-width: 540px;
    line-height: 1.9;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp .65s .28s forwards
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeUp .65s .36s forwards
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #7c6fff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s
}

.btn-glow:hover {
    background: #6a5de8;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(124, 111, 255, 0.32)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s
}

.btn-ghost:hover {
    border-color: rgba(124, 111, 255, 0.45);
    color: #fff;
    transform: translateY(-2px)
}

.h-stat {
    padding: 18px 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px)
}

.h-stat-n {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1
}

.h-stat-n em {
    color: #7c6fff;
    font-style: normal
}

.h-stat-l {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 5px
}

.hero-scroll {
    position: absolute;
    bottom: 38px;
    right: 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp .6s .7s forwards
}

.scroll-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    writing-mode: vertical-rl
}

.scroll-line-anim {
    width: 1px;
    height: 48px;
    background: linear-gradient(rgba(124, 111, 255, 0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1
    }

    51% {
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ─── SHARED SECTION ─── */
section {
    padding: 80px 6% 72px;
    position: relative
}

.divider-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px
}

.div-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.05)
}

.div-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    white-space: nowrap
}

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #7c6fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: #7c6fff
}

h2.stitle {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 14px
}

.ssub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.38);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 40px
}

/* reveal */
.rv {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease
}

.rv.on {
    opacity: 1;
    transform: translateY(0)
}

/* ─── ABOUT ─── */
#about {
    background: #0b0f18
}

.about-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start
}

.about-copy {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9
}

.about-copy p {
    margin-bottom: 18px
}

.about-copy strong {
    color: #fff;
    font-weight: 600
}

.about-copy .hl {
    color: #7c6fff;
    font-weight: 500
}

.nums-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px
}

.num-cell {
    background: #0b0f18;
    padding: 26px 22px
}

.num-big {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1
}

.num-big em {
    color: #7c6fff;
    font-style: normal
}

.num-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 5px
}

.live-badge {
    background: rgba(124, 111, 255, 0.07);
    border: 1px solid rgba(124, 111, 255, 0.14);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px
}

.green-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
    animation: gd 2s ease-in-out infinite
}

@keyframes gd {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, .4)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0)
    }
}

.live-txt small {
    font-size: 11px;
    color: rgba(255, 255, 255, .28);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 3px
}

.live-txt strong {
    font-size: 13.5px;
    color: #fff;
    font-weight: 500
}

/* ─── EXPERIENCE ─── */
#experience {
    background: #080c12
}

.exp-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0
}

.exp-tabs {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 0
}

.etab {
    padding: 16px 24px 16px 0;
    cursor: pointer;
    border-right: 2px solid transparent;
    margin-right: -1px;
    transition: all .2s
}

.etab-co {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 3px;
    transition: color .2s
}

.etab-role {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .2);
    transition: color .2s
}

.etab:hover .etab-co {
    color: rgba(255, 255, 255, .65)
}

.etab.on {
    border-right-color: #7c6fff
}

.etab.on .etab-co {
    color: #fff
}

.etab.on .etab-role {
    color: #7c6fff
}

.epanel {
    display: none;
    padding: 0 0 0 48px;
    animation: pIn .3s ease
}

.epanel.on {
    display: block
}

@keyframes pIn {
    from {
        opacity: 0;
        transform: translateX(12px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.ep-title {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 4px
}

.ep-co {
    font-size: 14px;
    color: #7c6fff;
    font-weight: 500;
    margin-bottom: 4px
}

.ep-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 26px
}

.ep-meta .d {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%
}

.ep-list {
    list-style: none
}

.ep-list li {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .5);
    padding: 5px 0 5px 20px;
    position: relative;
    line-height: 1.72
}

.ep-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #7c6fff;
    font-size: 11px;
    top: 7px
}

.ep-list li strong {
    color: rgba(255, 255, 255, .82);
    font-weight: 500
}

.etags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px
}

.etag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #7c6fff;
    background: rgba(124, 111, 255, .08);
    border: 1px solid rgba(124, 111, 255, .18);
    padding: 4px 10px;
    border-radius: 4px
}

/* ─── SKILLS ─── */
#skills {
    background: #0b0f18
}

.marquee-wrap {
    overflow: hidden;
    position: relative;
    margin-bottom: 14px
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #0b0f18, transparent)
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #0b0f18, transparent)
}

.mtrack {
    display: flex;
    gap: 10px;
    animation: scroll1 24s linear infinite
}

.mtrack2 {
    animation: scroll2 30s linear infinite
}

@keyframes scroll1 {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes scroll2 {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.mpill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 8px;
    padding: 9px 16px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color .2s
}

.mpill:hover {
    border-color: rgba(124, 111, 255, .3)
}

.mpill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0
}

.mpill span {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .55)
}

.skills-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 40px
}

.sk-cat {
    margin-bottom: 30px
}

.sk-cat-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: rgba(255, 255, 255, .22);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 12px
}

.sk-bar {
    margin-bottom: 11px
}

.sk-bar-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px
}

.sk-name {
    font-size: 13px;
    color: rgba(255, 255, 255, .58);
    font-weight: 500
}

.sk-pct {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #7c6fff
}

.sk-track {
    height: 3px;
    background: rgba(255, 255, 255, .06);
    border-radius: 2px;
    overflow: hidden
}

.sk-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #7c6fff, #a78bfa);
    width: 0;
    transition: width 1.3s cubic-bezier(.4, 0, .2, 1)
}

/* ─── PROJECTS ─── */
#projects {
    background: #080c12
}

.pgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .04);
    border-radius: 16px;
    overflow: hidden
}

.pcard {
    background: #080c12;
    padding: 42px;
    position: relative;
    overflow: hidden;
    transition: background .25s, transform .2s
}

.pcard::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 0%, rgba(124, 111, 255, .07), transparent 55%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none
}

.pcard:hover {
    background: #0c1020
}

.pcard:hover::after {
    opacity: 1
}

.pcard.feat {
    grid-column: 1/-1
}

.pnum {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, .12);
    letter-spacing: 2px;
    margin-bottom: 22px
}

.ptop {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px
}

.pname {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.3px
}

.pbadge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .7px;
    white-space: nowrap;
    flex-shrink: 0
}

.pb-prod {
    background: rgba(124, 111, 255, .1);
    color: #a78bfa;
    border: 1px solid rgba(124, 111, 255, .2)
}

.pb-live {
    background: rgba(74, 222, 128, .1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, .2)
}

.pb-soon {
    background: rgba(251, 191, 36, .1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, .2)
}

.ptagline {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 14px;
    font-style: italic
}

.pdesc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .48);
    line-height: 1.8;
    margin-bottom: 16px
}

.pbullets {
    list-style: none;
    margin-bottom: 18px
}

.pbullets li {
    font-size: 13px;
    color: rgba(255, 255, 255, .42);
    padding: 3px 0 3px 15px;
    position: relative;
    line-height: 1.65
}

.pbullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(124, 111, 255, .45);
    font-size: 9px;
    top: 7px
}

.pfoot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto
}

.ptechs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.pt {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(124, 111, 255, .7);
    background: rgba(124, 111, 255, .06);
    border: 1px solid rgba(124, 111, 255, .12);
    padding: 3px 9px;
    border-radius: 3px
}

.plinks {
    display: flex;
    gap: 8px
}

.plbtn {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px;
    transition: all .2s
}

.plbtn:hover {
    border-color: rgba(124, 111, 255, .4);
    color: #fff
}

.plbtn.off {
    opacity: .25;
    pointer-events: none
}

.plbtn.disabled {
    opacity: .35;
    pointer-events: none;
    background: rgba(251, 191, 36, .08);
    border-color: rgba(251, 191, 36, .15);
    color: #fbbf24
}

/* Coming Soon Card */
.pcard-soon {
    display: none;
    border: 1px dashed rgba(124, 111, 255, .2);
    opacity: .8
}

.pcard-soon .pnum {
    color: rgba(124, 111, 255, .4)
}

.pcard-soon .pname {
    color: rgba(255, 255, 255, .65)
}

.pcard-soon .ptagline {
    color: rgba(124, 111, 255, .35)
}

/* featured inner grid */
.feat-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 44px;
    align-items: center
}

.code-mock {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 24px;
    overflow: hidden
}

.code-mock pre {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    line-height: 2.1;
    color: rgba(255, 255, 255, .22)
}

.kw {
    color: #c792ea
}

.cls {
    color: #82aaff
}

.str {
    color: #c3e88d
}

.cm {
    color: rgba(255, 255, 255, .18)
}

/* ─── IMAGE GALLERY ─── */
.img-gallery-bold {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
    justify-content: center
}

.img-gallery-bold img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(124, 111, 255, 0.2);
    object-fit: cover;
    max-height: 520px;
    transition: transform .3s, box-shadow .3s
}

.img-gallery-bold img:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 80px rgba(124, 111, 255, 0.3)
}

.img-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap
}

.img-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(124, 111, 255, 0.2);
    object-fit: contain;
    max-height: 420px;
    transition: transform .3s, box-shadow .3s
}

.img-gallery img:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 80px rgba(124, 111, 255, 0.3)
}

/* ─── CONTACT ─── */
#contact {
    background: #0b0f18
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start
}

.clinks {
    list-style: none;
    margin-top: 8px
}

.clinks li {
    margin-bottom: 14px
}

.citem {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none
}

.cicon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(124, 111, 255, .07);
    border: 1px solid rgba(124, 111, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background .2s
}

.citem:hover .cicon {
    background: rgba(124, 111, 255, .18)
}

.clbl {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .25);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px
}

.cval {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .65);
    font-weight: 500;
    transition: color .2s
}

.citem:hover .cval {
    color: #fff
}

.fgroup {
    margin-bottom: 16px
}

.flbl {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: rgba(255, 255, 255, .28);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px
}

.finput {
    width: 100%;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 8px;
    padding: 13px 15px;
    font-size: 14px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
    appearance: none
}

/* Override browser autofill styling */
.finput:-webkit-autofill,
.finput:-webkit-autofill:hover,
.finput:-webkit-autofill:focus,
.finput:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(8, 12, 18, 0.8) inset !important;
    -webkit-text-fill-color: #fff !important;
    -webkit-transition: background-color 5000s ease-in-out 0s !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

.finput:-webkit-autofill::first-line {
    font-family: 'Outfit', sans-serif;
    color: #fff !important;
}

.finput:focus {
    border-color: rgba(124, 111, 255, .4)
}

.finput::placeholder {
    color: rgba(255, 255, 255, .16)
}

textarea.finput {
    resize: none;
    height: 118px
}

select.finput option {
    background: #080c12;
    color: #fff;
    padding: 10px;
    line-height: 1.5;
}

select.finput option:hover {
    background: #0c1020;
}

select.finput option:checked {
    background: #7c6fff;
    color: #fff;
}

/* ─── CUSTOM SELECT ─── */
.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 8px;
    padding: 13px 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    cursor: pointer;
    transition: border-color .2s, background .2s;
    font-family: 'Outfit', sans-serif;
}

.select-trigger:hover {
    background: rgba(255, 255, 255, .04);
}

.select-trigger.active {
    border-color: rgba(124, 111, 255, .4);
    background: rgba(255, 255, 255, .035);
}

.select-trigger svg {
    width: 12px;
    height: 8px;
    transition: transform .2s;
    flex-shrink: 0;
}

.select-trigger.active svg {
    transform: rotate(180deg);
}

.select-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #0b0f18;
    border: 1px solid rgba(124, 111, 255, .2);
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .6);
    overflow: hidden;
}

.select-dropdown.active {
    display: block;
}

.select-option {
    padding: 12px 15px;
    cursor: pointer;
    color: rgba(255, 255, 255, .7);
    transition: all .15s;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
}

.select-option:hover {
    background: rgba(124, 111, 255, .15);
    color: #7c6fff;
}

.select-option.selected {
    background: rgba(124, 111, 255, .25);
    color: #a78bfa;
    font-weight: 500;
}

.select-option:first-child {
    color: rgba(255, 255, 255, .35);
}

/* Light theme */
body.light .select-trigger {
    background: rgba(0, 0, 0, .04);
    border-color: rgba(0, 0, 0, .08);
    color: rgba(0, 0, 0, .55);
}

body.light .select-trigger:hover {
    background: rgba(0, 0, 0, .06);
}

body.light .select-trigger.active {
    border-color: rgba(124, 111, 255, .4);
    background: rgba(0, 0, 0, .08);
}

body.light .select-dropdown {
    background: #f8f9fc;
    border-color: rgba(124, 111, 255, .15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

body.light .select-option {
    color: rgba(0, 0, 0, .7);
}

body.light .select-option:hover {
    background: rgba(124, 111, 255, .1);
    color: #7c6fff;
}

body.light .select-option.selected {
    background: rgba(124, 111, 255, .15);
    color: #6d28d9;
}

body.light .select-option:first-child {
    color: rgba(0, 0, 0, .35);
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.fsub {
    width: 100%;
    background: #7c6fff;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: background .2s, transform .15s;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px
}

.fsub:hover {
    background: #6a5de8;
    transform: translateY(-1px)
}

.fsuccess {
    display: none;
    background: rgba(74, 222, 128, .07);
    border: 1px solid rgba(74, 222, 128, .2);
    border-radius: 8px;
    padding: 14px;
    font-size: 13.5px;
    color: #4ade80;
    text-align: center;
    margin-top: 12px
}

/* FOOTER */
footer {
    background: #080c12;
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding: 32px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px
}

.foot-l {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, .18)
}

.foot-l em {
    color: #7c6fff;
    font-style: normal
}

.foot-r {
    display: flex;
    gap: 22px
}

.foot-r a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .22);
    text-decoration: none;
    transition: color .2s
}

.foot-r a:hover {
    color: #fff
}

/* MOBILE */
@media(max-width:900px) {
    html {
        cursor: auto
    }

    #cursor,
    #cursor-ring {
        display: none
    }

    .nav-links li:not(:last-child) {
        display: none
    }

    .about-wrap,
    .exp-shell,
    .skills-body,
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .exp-tabs {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        display: flex;
        overflow-x: auto;
        padding-bottom: 0
    }

    .etab {
        border-right: none;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
        padding: 12px 18px;
        white-space: nowrap
    }

    .etab.on {
        border-right-color: transparent;
        border-bottom-color: #7c6fff
    }

    .epanel {
        padding: 24px 0 0
    }

    .pgrid {
        grid-template-columns: 1fr
    }

    .pcard-soon {
        display: none !important
    }

    .pcard.feat .feat-inner {
        grid-template-columns: 1fr
    }

    .img-gallery-bold,
    .img-gallery {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch
    }

    .img-gallery-bold img,
    .img-gallery img {
        max-height: 300px;
        flex-shrink: 0;
        scroll-snap-align: start
    }

    .hero-stats-strip {
        flex-wrap: wrap
    }

    .frow {
        grid-template-columns: 1fr
    }
}

/* DESKTOP - Show Coming Soon Card */
@media(min-width:900px) {
    .pcard-soon {
        display: block
    }
}

/* ─── THEME TOGGLE BUTTON ─── */
#themeBtn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background .2s, border-color .2s, transform .15s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3)
}

#themeBtn:hover {
    background: rgba(124, 111, 255, 0.2);
    border-color: rgba(124, 111, 255, 0.4);
    transform: scale(1.08)
}

/* ─── LIGHT THEME ─── */
body.light {
    background: #f5f6fa;
    color: #374151
}

body.light nav {
    background: rgba(245, 246, 250, 0.92);
    border-bottom-color: rgba(0, 0, 0, 0.06)
}

body.light .nav-logo {
    color: #0f172a
}

body.light .nav-links a {
    color: rgba(0, 0, 0, 0.45)
}

body.light .nav-links a:hover,
body.light .nav-links a.active {
    color: #0f172a
}

body.light #themeBtn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1)
}

body.light #themeBtn:hover {
    background: rgba(124, 111, 255, 0.12);
    border-color: rgba(124, 111, 255, 0.3)
}

/* hero light */
body.light #hero {
    background: #eef0f8
}

body.light .hero-grid-bg {
    background-image: linear-gradient(rgba(124, 111, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 111, 255, 0.06) 1px, transparent 1px);
    background-size: 72px 72px
}

body.light .hero-name {
    color: #0f172a
}

body.light .hero-role {
    color: rgba(0, 0, 0, 0.45)
}

body.light .hero-desc {
    color: rgba(0, 0, 0, 0.52)
}

body.light .btn-ghost {
    color: rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 0, 0, 0.12)
}

body.light .btn-ghost:hover {
    border-color: rgba(124, 111, 255, 0.5);
    color: #0f172a
}

body.light .h-stat {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.08)
}

body.light .h-stat-n {
    color: #0f172a
}

body.light .h-stat-l {
    color: rgba(0, 0, 0, 0.35)
}

body.light .scroll-lbl {
    color: rgba(0, 0, 0, 0.25)
}

/* section dividers light */
body.light .div-line {
    background: rgba(0, 0, 0, 0.07)
}

body.light .div-label {
    color: rgba(0, 0, 0, 0.25)
}

/* about light */
body.light #about {
    background: #fff
}

body.light h2.stitle {
    color: #0f172a
}

body.light .ssub {
    color: rgba(0, 0, 0, 0.45)
}

body.light .about-copy {
    color: rgba(0, 0, 0, 0.6)
}

body.light .about-copy strong {
    color: #0f172a
}

body.light .nums-grid {
    background: rgba(0, 0, 0, 0.06)
}

body.light .num-cell {
    background: #fff
}

body.light .num-big {
    color: #0f172a
}

body.light .num-lbl {
    color: rgba(0, 0, 0, 0.35)
}

body.light .live-badge {
    background: rgba(124, 111, 255, 0.06);
    border-color: rgba(124, 111, 255, 0.18)
}

body.light .live-txt small {
    color: rgba(0, 0, 0, 0.35)
}

body.light .live-txt strong {
    color: #0f172a
}

/* experience light */
body.light #experience {
    background: #f5f6fa
}

body.light .exp-tabs {
    border-right-color: rgba(0, 0, 0, 0.07)
}

body.light .etab-co {
    color: rgba(0, 0, 0, 0.35)
}

body.light .etab-role {
    color: rgba(0, 0, 0, 0.25)
}

body.light .etab:hover .etab-co {
    color: rgba(0, 0, 0, 0.7)
}

body.light .etab.on .etab-co {
    color: #0f172a
}

body.light .ep-title {
    color: #0f172a
}

body.light .ep-meta {
    color: rgba(0, 0, 0, 0.3)
}

body.light .ep-meta .d {
    background: rgba(0, 0, 0, 0.2)
}

body.light .ep-list li {
    color: rgba(0, 0, 0, 0.55)
}

body.light .ep-list li strong {
    color: rgba(0, 0, 0, 0.82)
}

body.light .etag {
    background: rgba(124, 111, 255, 0.07);
    border-color: rgba(124, 111, 255, 0.2)
}

/* skills light */
body.light #skills {
    background: #fff
}

body.light .marquee-wrap::before {
    background: linear-gradient(to right, #fff, transparent)
}

body.light .marquee-wrap::after {
    background: linear-gradient(to left, #fff, transparent)
}

body.light .mpill {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08)
}

body.light .mpill span {
    color: rgba(0, 0, 0, 0.55)
}

body.light .sk-cat-lbl {
    color: rgba(0, 0, 0, 0.3)
}

body.light .sk-name {
    color: rgba(0, 0, 0, 0.6)
}

body.light .sk-track {
    background: rgba(0, 0, 0, 0.06)
}

/* projects light */
body.light #projects {
    background: #f5f6fa
}

body.light .pgrid {
    background: rgba(0, 0, 0, 0.06)
}

body.light .pcard {
    background: #f5f6fa
}

body.light .pcard:hover {
    background: #eef0f8
}

body.light .pnum {
    color: rgba(0, 0, 0, 0.15)
}

body.light .pname {
    color: #0f172a
}

body.light .ptagline {
    color: rgba(0, 0, 0, 0.35)
}

body.light .pdesc {
    color: rgba(0, 0, 0, 0.55)
}

body.light .pbullets li {
    color: rgba(0, 0, 0, 0.5)
}

body.light .plbtn {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1)
}

body.light .plbtn:hover {
    color: #0f172a;
    border-color: rgba(124, 111, 255, 0.4)
}

body.light .code-mock {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.07)
}

body.light .code-mock pre {
    color: rgba(0, 0, 0, 0.25)
}

body.light .cm {
    color: rgba(0, 0, 0, 0.2)
}

/* contact light */
body.light #contact {
    background: #fff
}

body.light .cicon {
    background: rgba(124, 111, 255, 0.07);
    border-color: rgba(124, 111, 255, 0.18)
}

body.light .clbl {
    color: rgba(0, 0, 0, 0.3)
}

body.light .cval {
    color: rgba(0, 0, 0, 0.65)
}

body.light .citem:hover .cval {
    color: #0f172a
}

body.light .flbl {
    color: rgba(0, 0, 0, 0.35)
}

body.light .finput {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #0f172a
}

body.light .finput::placeholder {
    color: rgba(0, 0, 0, 0.22)
}

body.light .finput:focus {
    border-color: rgba(124, 111, 255, 0.45)
}

body.light .finput:-webkit-autofill,
body.light .finput:-webkit-autofill:hover,
body.light .finput:-webkit-autofill:focus,
body.light .finput:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f8f9fc inset !important;
    -webkit-text-fill-color: #0f172a !important;
    -webkit-transition: background-color 5000s ease-in-out 0s !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

body.light select.finput option {
    background: #fff;
    color: #0f172a;
    padding: 8px;
}

body.light select.finput option:hover {
    background: #f5f6fa;
    color: #7c6fff;
}

body.light select.finput option:checked {
    background: linear-gradient(#7c6fff, #7c6fff);
    color: #fff;
}

/* footer light */
body.light footer {
    background: #f5f6fa;
    border-top-color: rgba(0, 0, 0, 0.07)
}

body.light .foot-l {
    color: rgba(0, 0, 0, 0.3)
}

body.light .foot-r a {
    color: rgba(0, 0, 0, 0.28)
}

body.light .foot-r a:hover {
    color: #0f172a
}

/* scrollbar light */
body.light::-webkit-scrollbar-track {
    background: #f5f6fa
}