:root {
    --bg: #03060d;
    --bg1: #060d1a;
    --bg2: #091525;
    --surface: #0d1e35;
    --border: rgba(0, 229, 255, .13);
    --border2: rgba(56, 139, 253, .18);
    --cyan: #00e5ff;
    --blue: #388bfd;
    --violet: #a855f7;
    --pink: #f472b6;
    --green: #10b981;
    --orange: #f97316;
    --vue: #42b883;
    --java: #f89820;
    --laravel: #ff2d20;
    --text: #dce9f8;
    --muted: #4e72a0;
    --muted2: #7a9cbf
}

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

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: none
}

::selection {
    background: var(--cyan);
    color: #000
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--violet), var(--cyan))
}

#cur,
#cur2 {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    top: 0;
    left: 0
}

#cur {
    width: 10px;
    height: 10px;
    background: var(--cyan);
    mix-blend-mode: screen;
    transition: transform .15s, opacity .15s
}

#cur2 {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0, 229, 255, .3);
    mix-blend-mode: screen;
    transition: all .18s
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    opacity: .11;
    pointer-events: none;
    z-index: 0;
    animation: drift 20s ease-in-out infinite alternate
}

.b1 {
    width: 700px;
    height: 700px;
    background: var(--violet);
    top: -250px;
    right: -200px
}

.b2 {
    width: 550px;
    height: 550px;
    background: var(--cyan);
    bottom: -220px;
    left: -180px;
    animation-delay: -10s
}

.b3 {
    width: 350px;
    height: 350px;
    background: var(--pink);
    top: 45%;
    left: 38%;
    animation-delay: -5s
}

@keyframes drift {
    from {
        transform: translate(0, 0) scale(1)
    }

    to {
        transform: translate(50px, 35px) scale(1.1)
    }
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(0, 229, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 229, 255, .025) 1px, transparent 1px);
    background-size: 44px 44px
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, .025) 2px, rgba(0, 0, 0, .025) 4px)
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3.5rem;
    background: rgba(3, 6, 13, .82);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--border)
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    text-decoration: none
}

.logo em {
    color: var(--cyan);
    font-style: normal
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none
}

.nav-links a {
    font-family: 'Fira Code', monospace;
    font-size: .7rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: color .2s;
    position: relative
}

.nav-links a::before {
    content: '> ';
    color: var(--cyan);
    opacity: 0;
    transition: opacity .2s
}

.nav-links a:hover {
    color: var(--cyan)
}

.nav-links a:hover::before {
    opacity: 1
}

.hire-badge {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .38rem .9rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, .1);
    border: 1px solid rgba(16, 185, 129, .28);
    font-family: 'Fira Code', monospace;
    font-size: .62rem;
    letter-spacing: .13em;
    color: var(--green)
}

.ping {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: ping 2s infinite
}

@keyframes ping {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 3.5rem 3.5rem;
    position: relative;
    z-index: 2
}

.hero-wrap {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 3.5rem;
    align-items: center
}

@media(max-width:1020px) {
    .hero-wrap {
        grid-template-columns: 1fr
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(168, 85, 247, .11);
    border: 1px solid rgba(168, 85, 247, .28);
    border-radius: 999px;
    padding: .33rem .95rem;
    font-family: 'Fira Code', monospace;
    font-size: .68rem;
    color: var(--violet);
    letter-spacing: .15em;
    margin-bottom: 1.7rem;
    opacity: 0;
    animation: slideUp .6s .1s forwards
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--violet)
}

h1.ht {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    line-height: .93;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 1.1rem;
    opacity: 0;
    animation: slideUp .6s .3s forwards
}

h1.ht .stroke {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.8px rgba(0, 229, 255, .35);
    font-size: 75%
}

h1.ht .grad {
    display: block;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 55%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-role {
    font-family: 'Syne', sans-serif;
    font-size: clamp(.9rem, 2vw, 1.1rem);
    color: var(--orange);
    letter-spacing: .08em;
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: slideUp .6s .45s forwards
}

.sep {
    color: var(--muted);
    margin: 0 .5rem
}

.hero-sub {
    font-size: .9rem;
    color: var(--muted2);
    line-height: 1.95;
    max-width: 540px;
    margin-bottom: 2.2rem;
    opacity: 0;
    animation: slideUp .6s .6s forwards
}

.hero-sub strong {
    color: #fff;
    font-weight: 500
}

.hero-sub em {
    color: var(--cyan);
    font-style: normal
}

.tech-row {
    display: flex;
    flex-wrap: wrap;
    gap: .52rem;
    margin-bottom: 2.4rem;
    opacity: 0;
    animation: slideUp .6s .75s forwards
}

.tp {
    display: flex;
    align-items: center;
    gap: .38rem;
    padding: .28rem .78rem;
    border-radius: 6px;
    font-family: 'Fira Code', monospace;
    font-size: .65rem;
    letter-spacing: .04em;
    border: 1px solid;
    transition: all .25s;
    cursor: none
}

.tp:hover {
    transform: translateY(-2px);
    filter: brightness(1.3)
}

.tp-j {
    color: var(--java);
    border-color: rgba(248, 152, 32, .3);
    background: rgba(248, 152, 32, .07)
}

.tp-l {
    color: var(--laravel);
    border-color: rgba(255, 45, 32, .28);
    background: rgba(255, 45, 32, .07)
}

.tp-v {
    color: var(--vue);
    border-color: rgba(66, 184, 131, .3);
    background: rgba(66, 184, 131, .07)
}

.tp-n {
    color: var(--text);
    border-color: rgba(220, 233, 248, .18);
    background: rgba(220, 233, 248, .05)
}

.tp-s {
    color: #6db33f;
    border-color: rgba(109, 179, 63, .3);
    background: rgba(109, 179, 63, .07)
}

.tp-a {
    color: var(--violet);
    border-color: rgba(168, 85, 247, .3);
    background: rgba(168, 85, 247, .1);
    box-shadow: 0 0 14px rgba(168, 85, 247, .15)
}

.tp-r {
    color: #fb923c;
    border-color: rgba(251, 146, 60, .28);
    background: rgba(251, 146, 60, .07)
}

.tp svg {
    width: 13px;
    height: 13px
}

.btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp .6s .9s forwards
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .82rem 1.9rem;
    font-family: 'Fira Code', monospace;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    cursor: none
}

.btn-p {
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    color: #000;
    font-weight: 500;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    box-shadow: 0 0 28px rgba(0, 229, 255, .28)
}

.btn-p:hover {
    box-shadow: 0 0 48px rgba(0, 229, 255, .48);
    transform: translateY(-3px)
}

.btn-g {
    background: transparent;
    color: var(--cyan);
    border: 1px solid rgba(0, 229, 255, .35);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%)
}

.btn-g:hover {
    background: rgba(0, 229, 255, .07);
    box-shadow: 0 0 22px rgba(0, 229, 255, .18);
    transform: translateY(-3px)
}

.hcard {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 16px;
    overflow: hidden;
    padding: 1.8rem;
    opacity: 0;
    animation: slideUp .8s .55s forwards
}

.hcard::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, .035), rgba(168, 85, 247, .035));
    pointer-events: none
}

.cd {
    position: absolute;
    width: 18px;
    height: 18px;
    pointer-events: none
}

.cd.tl {
    top: 0;
    left: 0;
    border-top: 2px solid rgba(0, 229, 255, .5);
    border-left: 2px solid rgba(0, 229, 255, .5)
}

.cd.tr {
    top: 0;
    right: 0;
    border-top: 2px solid rgba(0, 229, 255, .5);
    border-right: 2px solid rgba(0, 229, 255, .5)
}

.cd.bl {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid rgba(0, 229, 255, .5);
    border-left: 2px solid rgba(0, 229, 255, .5)
}

.cd.br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid rgba(0, 229, 255, .5);
    border-right: 2px solid rgba(0, 229, 255, .5)
}

.ch {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.4rem
}

.cav {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: #000;
    font-size: 1rem
}

.cn {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: .98rem
}

.cr {
    font-family: 'Fira Code', monospace;
    font-size: .67rem;
    color: var(--muted2)
}

.cl {
    font-family: 'Fira Code', monospace;
    font-size: .61rem;
    color: var(--muted);
    margin-top: .2rem
}

.cst {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border2);
    border: 1px solid var(--border2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.3rem
}

.cs {
    background: var(--bg2);
    padding: .85rem;
    text-align: center
}

.csn {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    color: #fff;
    line-height: 1
}

.csn em {
    font-size: .9rem;
    color: var(--cyan);
    font-style: normal
}

.csl {
    font-size: .59rem;
    color: var(--muted);
    letter-spacing: .1em;
    margin-top: .28rem
}

.mt {
    background: var(--bg1);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.2rem
}

.mtb {
    background: rgba(56, 139, 253, .12);
    padding: .42rem .8rem;
    display: flex;
    gap: .4rem;
    align-items: center
}

.mtd {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

.mtd:nth-child(1) {
    background: #ff5f57
}

.mtd:nth-child(2) {
    background: #febc2e
}

.mtd:nth-child(3) {
    background: #28c840
}

.mtt {
    font-family: 'Fira Code', monospace;
    font-size: .59rem;
    color: var(--muted);
    margin-left: auto
}

.mtc {
    padding: .85rem 1rem;
    font-family: 'Fira Code', monospace;
    font-size: .69rem;
    line-height: 1.9
}

.p {
    color: var(--cyan)
}

.c {
    color: #fff
}

.o {
    color: var(--muted2)
}

.g {
    color: #28c840
}

.vi {
    color: var(--violet)
}

.mc {
    display: inline-block;
    width: 7px;
    height: 12px;
    background: var(--cyan);
    vertical-align: middle;
    animation: blink 1s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.aib {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .72rem .95rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(168, 85, 247, .12), rgba(244, 114, 182, .07));
    border: 1px solid rgba(168, 85, 247, .22)
}

.aii {
    font-size: 1.15rem
}

.ait {
    font-family: 'Fira Code', monospace;
    font-size: .67rem;
    color: var(--violet);
    line-height: 1.6
}

.ait strong {
    color: var(--pink)
}

.sec {
    position: relative;
    z-index: 2;
    padding: 6rem 3.5rem
}

.si {
    max-width: 1200px;
    margin: 0 auto
}

.sn {
    font-family: 'Fira Code', monospace;
    font-size: .63rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: .5rem
}

.sn::before {
    content: '[ ';
    opacity: .6
}

.sn::after {
    content: ' ]';
    opacity: .6
}

.st {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: .5rem
}

.st span {
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sl {
    height: 2px;
    width: 90px;
    border-radius: 99px;
    margin-top: .9rem;
    margin-bottom: 2.8rem;
    background: linear-gradient(90deg, var(--cyan), var(--violet), transparent)
}

.gd {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
    opacity: .25;
    position: relative;
    z-index: 2
}

#about {
    background: linear-gradient(180deg, transparent, rgba(9, 21, 37, .55), transparent)
}

.ag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start
}

@media(max-width:820px) {
    .ag {
        grid-template-columns: 1fr
    }
}

.at p {
    color: var(--muted2);
    line-height: 2;
    font-size: .89rem;
    margin-bottom: 1.1rem
}

.at p strong {
    color: #fff;
    font-weight: 500
}

.at p em {
    color: var(--cyan);
    font-style: normal
}

.ec {
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.ecard {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border2);
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.ecard::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--cyan);
    transition: height .3s
}

.ecard:hover::before {
    height: 100%
}

.ecard:hover {
    background: rgba(0, 229, 255, .04);
    border-color: rgba(0, 229, 255, .28);
    transform: translateX(5px)
}

.ecard.la::before {
    background: var(--laravel)
}

.ecard.vc::before {
    background: var(--vue)
}

.ecard.nx::before {
    background: var(--blue)
}

.ecard.ac::before {
    background: var(--violet)
}

.ei {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem
}

.ei.ja {
    background: rgba(248, 152, 32, .13)
}

.ei.la {
    background: rgba(255, 45, 32, .12)
}

.ei.vu {
    background: rgba(66, 184, 131, .12)
}

.ei.nx {
    background: rgba(255, 255, 255, .06)
}

.ei.ai {
    background: rgba(168, 85, 247, .12)
}

.etit {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: .87rem
}

.esub {
    font-family: 'Fira Code', monospace;
    font-size: .67rem;
    color: var(--muted2);
    margin-top: .18rem
}

#exp {
    background: var(--bg1)
}

.tl {
    position: relative;
    padding-left: 2rem
}

.tl::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--cyan), var(--violet), transparent)
}

.tli {
    position: relative;
    padding: 0 0 2.5rem 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .7s, transform .7s
}

.tli.in {
    opacity: 1;
    transform: translateX(0)
}

.tld {
    position: absolute;
    left: -2.35rem;
    top: .35rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    border: 2px solid var(--bg)
}

.tld.vio {
    background: var(--violet);
    box-shadow: 0 0 12px var(--violet)
}

.tlp {
    font-family: 'Fira Code', monospace;
    font-size: .63rem;
    letter-spacing: .15em;
    color: var(--cyan);
    margin-bottom: .4rem
}

.tlco {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: .15rem
}

.tlr {
    font-family: 'Fira Code', monospace;
    font-size: .7rem;
    color: var(--muted2);
    margin-bottom: .1rem
}

.tllo {
    font-family: 'Fira Code', monospace;
    font-size: .61rem;
    color: var(--muted)
}

.tlcard {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    margin-top: .9rem;
    transition: border-color .3s
}

.tlcard:hover {
    border-color: rgba(0, 229, 255, .3)
}

.tlb {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.tlb li {
    font-size: .82rem;
    color: var(--muted2);
    line-height: 1.75;
    padding-left: 1.2rem;
    position: relative
}

.tlb li::before {
    content: '\25B8';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-size: .7rem
}

.tlb li strong {
    color: var(--text);
    font-weight: 500
}

.tltags {
    display: flex;
    flex-wrap: wrap;
    gap: .38rem;
    margin-top: 1rem
}

.ptag {
    font-family: 'Fira Code', monospace;
    font-size: .59rem;
    letter-spacing: .04em;
    padding: .18rem .52rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--muted2)
}

.pt-j {
    color: var(--java);
    border-color: rgba(248, 152, 32, .3);
    background: rgba(248, 152, 32, .08)
}

.pt-l {
    color: var(--laravel);
    border-color: rgba(255, 45, 32, .28);
    background: rgba(255, 45, 32, .08)
}

.pt-v {
    color: var(--vue);
    border-color: rgba(66, 184, 131, .3);
    background: rgba(66, 184, 131, .08)
}

.pt-n {
    color: var(--text);
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .04)
}

.pt-a {
    color: var(--violet);
    border-color: rgba(168, 85, 247, .3);
    background: rgba(168, 85, 247, .1)
}

.pt-s {
    color: #6db33f;
    border-color: rgba(109, 179, 63, .3);
    background: rgba(109, 179, 63, .08)
}

.pt-r {
    color: #61dafb;
    border-color: rgba(97, 218, 251, .28);
    background: rgba(97, 218, 251, .07)
}

.pg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem
}

@media(max-width:920px) {
    .pg {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:580px) {
    .pg {
        grid-template-columns: 1fr
    }
}

.pc {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 14px;
    padding: 1.7rem;
    position: relative;
    overflow: hidden;
    transition: all .35s;
    cursor: none;
    display: flex;
    flex-direction: column
}

.pc::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    opacity: 0;
    transition: opacity .3s
}

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

.pc:hover {
    border-color: rgba(0, 229, 255, .28);
    background: linear-gradient(135deg, rgba(0, 229, 255, .035), rgba(168, 85, 247, .035));
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .4)
}

.pc.feat {
    grid-column: span 2
}

@media(max-width:920px) {
    .pc.feat {
        grid-column: span 1
    }
}

.pl {
    font-family: 'Fira Code', monospace;
    font-size: .58rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: .9rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.lt {
    color: var(--cyan)
}

.ly {
    color: var(--muted)
}

.ptit {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    letter-spacing: -.01em;
    margin-bottom: .65rem
}

.pd {
    font-size: .8rem;
    color: var(--muted2);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 1.3rem
}

.ptags {
    display: flex;
    flex-wrap: wrap;
    gap: .36rem;
    margin-bottom: 1.2rem
}

.plinks {
    display: flex;
    gap: .9rem;
    margin-top: auto
}

.plnk {
    font-family: 'Fira Code', monospace;
    font-size: .65rem;
    letter-spacing: .1em;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: .3rem
}

.plnk:hover {
    color: var(--cyan)
}

.plnk::before {
    content: '\2192';
    font-size: .75rem
}

.ldot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 5px var(--green);
    margin-right: 2px
}

#skills {
    background: var(--bg1)
}

.skg {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
    gap: 1.4rem;
    margin-bottom: 2.5rem
}

.skcat {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 13px;
    padding: 1.4rem;
    transition: border-color .3s
}

.skcat:hover {
    border-color: rgba(0, 229, 255, .3)
}

.sctit {
    font-family: 'Fira Code', monospace;
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: .55rem
}

.sctit::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border)
}

.ski {
    margin-bottom: .95rem
}

.skt {
    display: flex;
    justify-content: space-between;
    margin-bottom: .35rem
}

.skn {
    font-size: .8rem;
    color: var(--text)
}

.skp {
    font-family: 'Fira Code', monospace;
    font-size: .64rem;
    color: var(--muted)
}

.sktr {
    height: 4px;
    background: rgba(255, 255, 255, .07);
    border-radius: 99px;
    overflow: hidden
}

.skf {
    height: 100%;
    border-radius: 99px;
    width: 0%;
    transition: width 1.4s cubic-bezier(.16, 1, .3, 1)
}

.fc {
    background: linear-gradient(90deg, var(--cyan), var(--blue))
}

.fw {
    background: linear-gradient(90deg, var(--java), var(--laravel))
}

.fg {
    background: linear-gradient(90deg, var(--vue), var(--green))
}

.fv {
    background: linear-gradient(90deg, var(--violet), var(--pink))
}

.gbox {
    padding: 2rem 2.4rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(168, 85, 247, .1), rgba(244, 114, 182, .07));
    border: 1px solid rgba(168, 85, 247, .28)
}

.gbox::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, .18), transparent 70%);
    pointer-events: none
}

.gtit {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: .45rem;
    display: flex;
    align-items: center;
    gap: .7rem
}

.gtit span {
    background: linear-gradient(135deg, var(--violet), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.gbox p {
    color: var(--muted2);
    font-size: .84rem;
    line-height: 1.9;
    margin-bottom: 1.4rem
}

.gtags {
    display: flex;
    flex-wrap: wrap;
    gap: .42rem
}

.gtag {
    padding: .25rem .72rem;
    border-radius: 5px;
    font-family: 'Fira Code', monospace;
    font-size: .62rem;
    letter-spacing: .07em;
    background: rgba(168, 85, 247, .12);
    border: 1px solid rgba(168, 85, 247, .22);
    color: var(--violet);
    transition: all .25s
}

.gtag:hover {
    background: rgba(168, 85, 247, .22);
    transform: translateY(-2px)
}

.cgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

@media(max-width:820px) {
    .cgrid {
        grid-template-columns: 1fr
    }
}

.ct p {
    color: var(--muted2);
    line-height: 2;
    font-size: .88rem;
    margin-bottom: 1.3rem
}

.cemail {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid var(--cyan);
    padding-bottom: .15rem;
    transition: color .2s
}

.cemail:hover {
    color: var(--cyan)
}

.clinks {
    display: flex;
    flex-direction: column;
    gap: .85rem
}

.clnk {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.3rem;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border2);
    color: var(--muted2);
    text-decoration: none;
    transition: all .3s
}

.clnk:hover {
    border-color: var(--cyan);
    color: #fff;
    background: rgba(0, 229, 255, .05);
    transform: translateX(5px)
}

.clico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .06)
}

.cll {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: .8rem;
    color: var(--text)
}

.clv {
    font-family: 'Fira Code', monospace;
    font-size: .65rem;
    color: var(--muted)
}

footer {
    position: relative;
    z-index: 2;
    padding: 1.4rem 3.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

footer span {
    font-family: 'Fira Code', monospace;
    font-size: .62rem;
    color: var(--muted);
    letter-spacing: .1em
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: translateY(0)
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

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