:root {
    --bg: #080c0f;
    --surface: #0e1419;
    --card: #111820;
    --border: #1c2530;
    --border2: #243040;
    --text: #dde6ef;
    --muted: #4a5a6a;
    --dim: #2a3a4a;
    --accent: #4af0c0;
    --accent2: #f0a04a;
    --accent3: #c04af0;
    --g: clamp(1.2rem, 4vw, 3rem);

    --gd: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    line-height: 1.7;
    min-height: 100vh;
    cursor: none;
    overflow-x: hidden;
}

/* Cursor */
.cur {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cur-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s;
}

.cur-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, border-color .3s;
}

body.hovering .cur-dot {
    width: 12px;
    height: 12px;
}

body.hovering .cur-ring {
    width: 54px;
    height: 54px;
    border-color: rgba(74, 240, 192, .7);
}

/* Progress */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    z-index: 1000;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
    transition: width .1s linear;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem var(--g);
    transition: background .4s, backdrop-filter .4s, border-color .4s;
    border-bottom: 1px solid transparent;
}

nav.stuck {
    background: rgba(8, 12, 15, .88);
    backdrop-filter: blur(16px);
    border-color: var(--border);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: .1em;
    color: var(--text);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.hire-btn {
    padding: .5rem 1.2rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s, color .25s;
}

.hire-btn:hover {
    background: var(--accent);
    color: var(--bg);
}

/* BOOKMARK */
.bookmark-btn {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border);
    cursor: none;
    transition: border-color .25s, background .25s;
    flex-shrink: 0;
}

.bookmark-btn:hover {
    border-color: var(--accent2);
    background: rgba(240, 160, 74, .07);
}

.bookmark-btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--muted);
    stroke-width: 1.8;
    transition: stroke .25s, fill .25s;
}

.bookmark-btn:hover svg {
    stroke: var(--accent2);
}

.bookmark-btn.saved svg {
    fill: var(--accent2);
    stroke: var(--accent2);
}

.bookmark-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 14px;
    height: 14px;
    background: var(--accent2);
    border-radius: 50%;
    font-size: 7px;
    color: var(--bg);
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.bookmark-badge.show {
    display: flex;
}

/* BOOKMARK PANEL */
.bm-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    background: var(--surface);
    border-left: 1px solid var(--border);
    z-index: 1500;
    transform: translateX(100%);
    transition: transform .35s ease;
    display: flex;
    flex-direction: column;
}

.bm-panel.open {
    transform: translateX(0);
}

.bm-panel-head {
    padding: 1.4rem 1.2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.bm-panel-title {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent2);
}

.bm-close {
    width: 28px;
    height: 28px;
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all .2s;
}

.bm-close:hover {
    border-color: var(--text);
    color: var(--text);
}

.bm-list {
    flex: 1;
    overflow-y: auto;
    padding: .8rem;
}

.bm-empty {
    padding: 2rem 1rem;
    text-align: center;
    color: var(--dim);
    font-size: 11px;
}

.bm-empty big {
    display: block;
    font-size: 1.8rem;
    margin-bottom: .8rem;
    opacity: .4;
}

.bm-item {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    padding: .8rem;
    border: 1px solid var(--border);
    margin-bottom: .5rem;
    background: var(--card);
    transition: border-color .2s;
    cursor: none;
}

.bm-item:hover {
    border-color: var(--border2);
}

.bm-item-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: .1rem;
}

.bm-item-info {
    flex: 1;
    min-width: 0;
}

.bm-item-title {
    font-family: 'Fraunces', serif;
    font-size: .95rem;
    color: var(--text);
    margin-bottom: .15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bm-item-type {
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.bm-item-remove {
    background: none;
    border: none;
    color: var(--dim);
    font-size: 14px;
    cursor: none;
    padding: .2rem;
    transition: color .2s;
    flex-shrink: 0;
}

.bm-item-remove:hover {
    color: var(--red, #f04a6a);
}

.bm-overlay {
    position: fixed;
    inset: 0;
    z-index: 1400;
    background: rgba(5, 8, 12, .5);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.bm-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* HERO */
.hero {
    padding: 10rem var(--g) 5rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(74, 240, 192, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 240, 192, .03) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 240, 192, .06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-label {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    opacity: 0;
    animation: fup .7s .1s forwards;
}

.hero-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    line-height: .95;
    color: var(--text);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fup .7s .25s forwards;
}

h1 em {
    color: var(--accent);
    font-style: italic;
}

h1 span {
    color: var(--muted);
}

.hero-sub {
    max-width: 52ch;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
    opacity: 0;
    animation: fup .7s .4s forwards;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fup .7s .55s forwards;
}

.stat {
    border-left: 1px solid var(--border2);
    padding-left: 1rem;
}

.stat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--text);
    line-height: 1;
}

.stat-n span {
    color: var(--accent);
}

.stat-l {
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* FILTER */
.filter-wrap {
    padding: 0 var(--g) 2rem;
    /* position: sticky; */
    top: 60px;
    z-index: 800;
    opacity: 0;
    animation: fup .7s .7s forwards;
}

.filter-bar {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    padding: 1rem 1.2rem;
    background: rgba(14, 20, 25, .9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    align-items: center;
}

.filter-label {
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--dim);
    margin-right: .5rem;
}

.filter-btn {
    padding: .35rem .9rem;
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: none;
    transition: all .2s;
}

.filter-btn:hover {
    border-color: var(--border2);
    color: var(--text);
}

.filter-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(74, 240, 192, .07);
}

.filter-count {
    margin-left: auto;
    font-size: 10px;
    color: var(--muted);
}

.filter-count span {
    color: var(--accent);
}

/* GRID */
.projects-wrap {
    padding: 2rem var(--g) 6rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
    background: transparent;
    border: none;
}

/* CARD */
.card {
    background: var(--card);
    position: relative;
    overflow: hidden;
    transition: background .3s, transform .3s, box-shadow .3s;
    opacity: 0;
    transform: translateY(20px);
    animation: cardIn .5s forwards;
    border: 1px solid var(--border);
}

.card:nth-child(1) {
    animation-delay: .05s
}

.card:nth-child(2) {
    animation-delay: .10s
}

.card:nth-child(3) {
    animation-delay: .15s
}

.card:nth-child(4) {
    animation-delay: .20s
}

.card:nth-child(5) {
    animation-delay: .25s
}

.card:nth-child(6) {
    animation-delay: .30s
}

.card:nth-child(7) {
    animation-delay: .35s
}

.card:nth-child(8) {
    animation-delay: .40s
}

.card:nth-child(9) {
    animation-delay: .45s
}

.card.hidden {
    display: none;
}

.card:hover {
    background: #141e28;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.card-banner {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-banner-bg {
    position: absolute;
    inset: 0;
    transition: transform .5s ease;
}

.card:hover .card-banner-bg {
    transform: scale(1.06);
}

.bg-react {
    background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 40%, #0d2a50 70%, #061424 100%);
}

.bg-vue {
    background: linear-gradient(135deg, #0a1f14 0%, #1a4a2e 40%, #0d3020 70%, #061409 100%);
}

.bg-node {
    background: linear-gradient(135deg, #1a1f0a 0%, #3a4a0e 40%, #2a3a0a 70%, #141a05 100%);
}

.bg-mobile {
    background: linear-gradient(135deg, #1f0a1a 0%, #4a1a3a 40%, #3a0a2a 70%, #1a0514 100%);
}

.bg-fullstack {
    background: linear-gradient(135deg, #1f1a0a 0%, #3a2a00 50%, #2a1e08 100%);
}

.bg-api {
    background: linear-gradient(135deg, #0a1f1f 0%, #0e3a3a 50%, #071a1a 100%);
}

.bg-ecommerce {
    background: linear-gradient(135deg, #1f0a0a 0%, #3a1010 50%, #1a0808 100%);
}

.card-banner-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .03) 1px, transparent 1px), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.card-banner-icon {
    position: absolute;
    bottom: 1rem;
    left: 1.2rem;
    font-size: 2.4rem;
    line-height: 1;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, .1));
}

.card-banner-num {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(255, 255, 255, .04);
    letter-spacing: -.02em;
}

.card-status {
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    padding: .2rem .6rem;
    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.status-live {
    background: rgba(74, 240, 192, .12);
    color: var(--accent);
    border: 1px solid rgba(74, 240, 192, .25);
}

.status-wip {
    background: rgba(240, 160, 74, .12);
    color: var(--accent2);
    border: 1px solid rgba(240, 160, 74, .25);
}

.status-closed {
    background: rgba(100, 100, 100, .12);
    color: var(--muted);
    border: 1px solid rgba(100, 100, 100, .2);
}

.card-body {
    padding: 1.8rem 1.8rem 1.5rem;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-type {
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
}

.card-year {
    font-size: 10px;
    color: var(--dim);
}

.card-title {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: .7rem;
    line-height: 1.2;
    transition: color .2s;
}

.card:hover .card-title {
    color: var(--accent);
}

.card-desc {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.4rem;
}

.card-tags {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.tag {
    padding: .25rem .65rem;
    border: 1px solid var(--border2);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--dim);
    transition: border-color .2s, color .2s;
}

.tag.accent {
    border-color: rgba(74, 240, 192, .3);
    color: rgba(74, 240, 192, .7);
}

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.card-links {
    display: flex;
    gap: .8rem;
}

.card-link {
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .3rem;
    transition: color .2s;
}

.card-link:hover {
    color: var(--accent);
}

.card-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
    transition: all .25s;
    flex-shrink: 0;
    cursor: none;
}

.card-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(74, 240, 192, .07);
}

/* MODAL */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(5, 8, 12, .92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--card);
    border: 1px solid var(--border2);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(20px) scale(.97);
    transition: transform .35s ease;
}

.modal-backdrop.open .modal {
    transform: translateY(0) scale(1);
}

.modal-banner {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.modal-banner-icon {
    position: absolute;
    bottom: 1.2rem;
    left: 1.5rem;
    font-size: 3.5rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, .5);
    border: 1px solid var(--border2);
    color: var(--muted);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all .2s;
}

.modal-close:hover {
    color: var(--text);
}

.modal-body {
    padding: 2rem;
}

.modal-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.modal-title {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: .5rem;
}

.modal-desc {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.modal-section-title {
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .8rem;
}

.modal-tags {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.modal-features {
    margin-bottom: 1.5rem;
}

.modal-feature {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    color: var(--muted);
}

.modal-feature::before {
    content: '→';
    color: var(--accent);
    flex-shrink: 0;
}

.modal-links {
    display: flex;
    gap: 1rem;
}

.modal-link {
    padding: .7rem 1.5rem;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid;
    transition: all .25s;
}

.ml-primary {
    border-color: var(--accent);
    color: var(--accent);
}

.ml-primary:hover {
    background: var(--accent);
    color: var(--bg);
}

.ml-ghost {
    border-color: var(--border2);
    color: var(--muted);
}

.ml-ghost:hover {
    border-color: var(--text);
    color: var(--text);
}

/* ABOUT SECTION */
.about-section {
    padding: 6rem var(--g);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: 'ABOUT';
    position: absolute;
    right: var(--g);
    top: 4rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    color: rgba(255, 255, 255, .02);
    letter-spacing: .1em;
    pointer-events: none;
    line-height: 1;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.about-left {}

.about-tag {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: .8rem;
}

.about-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.about-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.about-heading em {
    color: var(--accent);
    font-style: italic;
}

.about-bio {
    color: var(--muted);
    font-size: 12px;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.about-bio+.about-bio {
    margin-top: -.5rem;
}

.about-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.4rem;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid;
    transition: all .25s;
    cursor: none;
}

.about-btn-primary {
    border-color: var(--accent);
    color: var(--accent);
}

.about-btn-primary:hover {
    background: var(--accent);
    color: var(--bg);
}

.about-btn-ghost {
    border-color: var(--border2);
    color: var(--muted);
}

.about-btn-ghost:hover {
    border-color: var(--text);
    color: var(--text);
}

.about-right {}

.about-avatar-wrap {
    position: relative;
    margin-bottom: 2.5rem;
}

.about-avatar {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-avatar-inner {
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        
        width: min(250px,300px);
        height: min(250px,300px);
        border-radius: 50%;
        object-fit: cover;
        border-width: 1.5px;
        border-style: solid;
        border-image: var(--gd) 0;
    }
}


.about-avatar-corner {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: .3rem .7rem;
    background: rgba(74, 240, 192, .1);
    border: 1px solid rgba(74, 240, 192, .2);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
}

.about-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 240, 192, .04), transparent 60%);
}

.about-skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.about-skill {
    background: var(--card);
    padding: 1rem 1.1rem;
    transition: background .2s;
}

.about-skill:hover {
    background: var(--surface);
}

.about-skill-name {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: .5rem;
}

.about-skill-bar {
    height: 2px;
    background: var(--border2);
    position: relative;
    overflow: hidden;
}

.about-skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 0;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.2s ease;
}

.about-skill.vis .about-skill-fill {
    transform: scaleX(1);
}

.about-skill-pct {
    font-size: 9px;
    color: var(--muted);
    margin-top: .3rem;
}

.about-extras {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-extra {
    flex: 1;
    min-width: 120px;
    border: 1px solid var(--border);
    padding: 1rem;
    background: var(--card);
}

.about-extra-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--text);
    line-height: 1;
}

.about-extra-num span {
    color: var(--accent);
}

.about-extra-label {
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .2rem;
}

/* NO RESULTS */
.no-results {
    display: none;
    grid-column: 1/-1;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
}

.no-results.show {
    display: block;
}

.no-results big {
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 2rem var(--g);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: var(--muted);
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

/* ANIMATIONS */
@keyframes fup {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

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

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

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

@media(max-width:640px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .stats {
        gap: 1.2rem;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .bm-panel {
        width: 100%;
    }

    .hire-btn {
        display: none;
    }
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--border);
    cursor: none;
    transition: border-color .25s;
    flex-shrink: 0;
}

.hamburger:hover {
    border-color: var(--accent);
}

.hamburger span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--muted);
    transition: transform .35s ease, opacity .35s ease, background .25s;
}

.hamburger:hover span {
    background: var(--accent);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* MOBILE MENU DRAWER */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 850;
    background: rgba(8, 12, 15, .97);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-links li {
    overflow: hidden;
}

.mobile-menu-links a {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 10vw, 4rem);
    font-weight: 300;
    color: var(--muted);
    text-decoration: none;
    padding: .4rem 2rem;
    line-height: 1.2;
    transition: color .25s;
    transform: translateY(40px);
    opacity: 0;
    transition: transform .45s ease, opacity .45s ease, color .25s;
}

.mobile-menu.open .mobile-menu-links a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-links li:nth-child(1) a {
    transition-delay: .05s
}

.mobile-menu-links li:nth-child(2) a {
    transition-delay: .12s
}

.mobile-menu-links li:nth-child(3) a {
    transition-delay: .19s
}

.mobile-menu-links li:nth-child(4) a {
    transition-delay: .26s
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    color: var(--accent);
}

.mobile-menu-links a em {
    font-style: normal;
    font-size: .4em;
    letter-spacing: .2em;
    text-transform: uppercase;
    vertical-align: middle;
    color: var(--muted);
    margin-left: .5rem;
}

.mobile-menu-foot {
    margin-top: 3rem;
    display: flex;
    gap: 1.2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .45s .3s ease, opacity .45s .3s ease;
}

.mobile-menu.open .mobile-menu-foot {
    transform: translateY(0);
    opacity: 1;
}

.mobile-hire {
    padding: .8rem 2.5rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s, color .25s;
}

.mobile-hire:hover {
    background: var(--accent);
    color: var(--bg);
}

.mobile-menu-line {
    width: 40px;
    height: 1px;
    background: var(--border2);
    margin: 2rem auto 0;
}

@media(max-width:768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hire-btn {
        display: none;
    }
}