:root {
    --bg: #050810;
    --bg1: #080c18;
    --bg2: #0c1222;
    --bg3: #111830;
    --ink: #eef2ff;
    --ink2: #7b92c4;
    --ink3: #334266;
    --blue: #4f8ef7;
    --blue2: #2563eb;
    --blue3: #1e40af;
    --violet: #a78bfa;
    --cyan: #22d3ee;
    --green: #34d399;
    --gold: #fbbf24;
    --red: #f87171;
    --b1: rgba(79, 142, 247, .1);
    --b2: rgba(79, 142, 247, .22);
    --b3: rgba(79, 142, 247, .35);
    --font: 'Plus Jakarta Sans', sans-serif;
    --mono: 'Space Mono', monospace;
    --nav: 70px;
    --r: 10px;
    --r2: 18px;
    --r3: 26px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

/* CURSOR */
#cur {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
}

#cur-r {
    position: fixed;
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--b3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all .09s ease-out;
}

@media(max-width: 900px) {
    body {
        cursor: auto;
    }

    #cur,
    #cur-r {
        display: none;
    }
}

/* GRAIN */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: .022;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* LAYOUT */
.wrap {
    max-width: 1208px;
    margin: 0 auto;
    padding: 0 32px;
}

@media(max-width:768px) {
    .wrap {
        padding: 0 18px;
    }
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 600;
    height: var(--nav);
    display: flex;
    align-items: center;
    transition: background .3s, border-color .3s;
}

nav.scrolled {
    background: rgba(5, 8, 16, .93);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--b1);
}

.nav-i {
    max-width: 1208px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo-a {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    text-decoration: none;
}

.logo-a svg {
    height: 34px;
    width: auto;
    transition: filter .25s;
}

.logo-a:hover svg {
    filter: drop-shadow(0 0 14px rgba(79, 142, 247, .7));
}

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

.nav-links a {
    color: var(--ink2);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all .2s;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.on {
    color: var(--ink);
    background: rgba(79, 142, 247, .09);
}

.nav-btn {
    padding: 9px 24px;
    border-radius: var(--r);
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .22s;
    box-shadow: 0 0 18px rgba(79, 142, 247, .28);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(79, 142, 247, .4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    width: 20px;
    height: 1.5px;
    background: var(--ink2);
    border-radius: 2px;
    transition: all .3s;
    display: block;
}

@media(max-width:900px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* SECTION */
section {
    padding: 108px 0;
}

.label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .16em;
    color: var(--blue);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.label i {
    font-size: 13px;
}

.h2 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 16px;
}

.sub {
    color: var(--ink2);
    font-size: 15.5px;
    max-width: 520px;
    margin-bottom: 64px;
    line-height: 1.8;
}

.grad {
    background: linear-gradient(130deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-v {
    background: linear-gradient(130deg, var(--violet), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* BTNS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: var(--r);
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all .22s;
    border: none;
    text-decoration: none;
}

.btn i {
    font-size: 16px;
}

.btn-b {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    box-shadow: 0 0 22px rgba(79, 142, 247, .28);
}

.btn-b:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(79, 142, 247, .42);
}

.btn-o {
    background: transparent;
    color: var(--ink2);
    border: 1.5px solid var(--b2);
}

.btn-o:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}

/* TAG */
.tag {
    font-family: var(--mono);
    font-size: 10px;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(34, 211, 238, .07);
    border: 1px solid rgba(34, 211, 238, .16);
    color: var(--cyan);
}

/* SCROLL TOP */
#stop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 400;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg2);
    border: 1px solid var(--b2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    color: var(--blue);
    font-size: 18px;
}

#stop.show {
    opacity: 1;
    pointer-events: all;
}

/* ── REVEAL ON SCROLL ── */
.rev,
.rev-l,
.rev-r {
    opacity: 1;
    transform: none;
    transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-ready .rev {
    opacity: 0;
    transform: translateY(24px);
}

html.js-ready .rev-l {
    opacity: 0;
    transform: translateX(-32px);
}

html.js-ready .rev-r {
    opacity: 0;
    transform: translateX(32px);
}

html.js-ready .rev.in,
html.js-ready .rev-l.in,
html.js-ready .rev-r.in {
    opacity: 1;
    transform: none;
}

/* ══════════════════════
   HERO
══════════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1208px;
    margin: 0 auto;
    padding: var(--nav) 32px 40px;
}

.hero-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(79, 142, 247, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 142, 247, .045) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, black 10%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, black 10%, transparent 100%);
}

.hero-orb {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 60% at 10% 55%, rgba(37, 99, 235, .09) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 88% 20%, rgba(167, 139, 250, .07) 0%, transparent 70%),
        radial-gradient(ellipse 30% 35% at 60% 90%, rgba(34, 211, 238, .05) 0%, transparent 70%);
    animation: orbPulse 9s ease-in-out infinite alternate;
}

@keyframes orbPulse {
    0% {
        opacity: .6;
    }

    100% {
        opacity: 1;
    }
}

.hero-left {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--blue);
    border: 1px solid var(--b2);
    background: rgba(79, 142, 247, .07);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 30px;
    letter-spacing: .06em;
}

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

.hero-title {
    font-size: clamp(44px, 5.8vw, 82px);
    font-weight: 800;
    line-height: .94;
    letter-spacing: -.04em;
    margin-bottom: 26px;
    overflow: hidden;
}

.t-row {
    display: block;
    overflow: hidden;
}

.t-in {
    display: block;
    animation: slideUp .85s cubic-bezier(.16, 1, .3, 1) both;
}

.t-in:nth-child(1) {
    animation-delay: .04s;
}

.t-in:nth-child(2) {
    animation-delay: .15s;
}

.t-in:nth-child(3) {
    animation-delay: .26s;
}

.hero-sub {
    color: var(--ink2);
    font-size: 16px;
    max-width: 460px;
    margin-bottom: 38px;
    line-height: 1.82;
    animation: fadeUp .7s .4s ease both;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    animation: fadeUp .7s .55s ease both;
}

.hero-stats {
    display: flex;
    border: 1px solid var(--b1);
    border-radius: var(--r2);
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(8px);
    overflow: hidden;
    animation: fadeUp .7s .7s ease both;
    width: fit-content;
}

.hs {
    padding: 18px 26px;
    border-right: 1px solid var(--b1);
    text-align: center;
}

.hs:last-child {
    border-right: none;
}

.hs-v {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.hs-l {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink3);
    letter-spacing: .05em;
    margin-top: 3px;
}

.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    flex-direction: column;
}

#three-canvas {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
    display: block;
    border-radius: 50%;
    cursor: grab;
    animation: fadeUp .9s .2s ease both;
}

#three-canvas:active {
    cursor: grabbing;
}

.h-badge {
    position: absolute;
    background: rgba(5, 8, 16, .9);
    border: 1px solid var(--b2);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    color: var(--ink2);
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    z-index: 3;
}

.h-badge.tl {
    top: 8%;
    left: -10px;
    animation: floatB 4s ease-in-out infinite;
}

.h-badge.br {
    bottom: 10%;
    right: -10px;
    animation: floatB 5s 1.2s ease-in-out infinite;
}

.h-badge.tr {
    top: 45%;
    right: -20px;
    animation: floatB 3.5s .6s ease-in-out infinite;
}

@keyframes floatB {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.badge-icon {
    font-size: 15px;
    color: var(--blue);
}

@media(max-width:900px) {
    #hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero-left {
        padding: 60px 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-right {
        padding: 24px 0 48px;
    }

    #three-canvas {
        max-width: 280px;
    }

    .h-badge.tl {
        top: auto;
        bottom: -10px;
        left: 50%;
        transform: translateX(-60%);
    }

    .h-badge.br {
        bottom: auto;
        top: -10px;
        right: 50%;
        transform: translateX(60%);
    }

    .h-badge.tr {
        display: none;
    }
}

/* ══════════════════════
   TICKER
══════════════════════ */
#ticker {
    border-top: 1px solid var(--b1);
    border-bottom: 1px solid var(--b1);
    padding: 18px 0;
    overflow: hidden;
}

.tk-track {
    display: flex;
    gap: 52px;
    animation: scrollL 30s linear infinite;
    width: max-content;
}

.tk-track:hover {
    animation-play-state: paused;
}

.tk-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--ink3);
    white-space: nowrap;
    letter-spacing: .06em;
}

.tk-item i {
    font-size: 14px;
    color: var(--blue);
}

/* ══════════════════════
   FOUNDER
══════════════════════ */
#founder {
    background: var(--bg1);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}

.f-card {
    background: var(--bg2);
    border: 1px solid var(--b1);
    border-radius: var(--r3);
    padding: 44px;
    position: relative;
    overflow: hidden;
}

.f-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 142, 247, .1), transparent 70%);
    pointer-events: none;
}

.f-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.f-av {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(79, 142, 247, .1);
    border: 2px solid var(--b2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 28px rgba(79, 142, 247, .2);
    flex-shrink: 0;
}

.f-av svg {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(79, 142, 247, .6));
}

.f-name {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.f-role {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--blue);
    letter-spacing: .06em;
    margin-top: 4px;
}

.f-bio {
    color: var(--ink2);
    font-size: 14.5px;
    line-height: 1.88;
    margin-bottom: 26px;
}

.f-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 30px;
}

.chip i {
    font-size: 12px;
}

.chip-g {
    border-color: rgba(52, 211, 153, .25);
    color: var(--green);
}

.chip-b {
    border-color: var(--b2);
    color: var(--blue);
}

.f-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--r);
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: all .22s;
    border: none;
    cursor: pointer;
}

.f-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(79, 142, 247, .38);
}

.f-cta i {
    font-size: 15px;
}

.fval {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--b1);
}

.fval:last-child {
    border-bottom: none;
}

.fv-ic {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(79, 142, 247, .09);
    border: 1px solid var(--b1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    font-size: 16px;
}

.fv-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.fv-desc {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.62;
}

@media(max-width:900px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ══════════════════════
   EXPERIENCE
══════════════════════ */
#experience {
    background: var(--bg);
}

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
}

.tl {
    position: relative;
    padding-left: 26px;
}

.tl::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--blue), rgba(79, 142, 247, .05));
}

.tl-item {
    position: relative;
    margin-bottom: 38px;
    padding-left: 6px;
}

.tl-dot {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    background: var(--bg);
    box-shadow: 0 0 12px rgba(79, 142, 247, .5);
}

.tl-date {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--blue);
    margin-bottom: 5px;
    letter-spacing: .06em;
}

.tl-role {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.tl-co {
    font-size: 13px;
    color: var(--cyan);
    margin-bottom: 10px;
    font-weight: 500;
}

.tl-pts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tl-pts li {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65;
    padding-left: 14px;
    position: relative;
}

.tl-pts li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-size: 10px;
    top: 4px;
}

.sk-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sk-item {
    padding: 13px 0;
    border-bottom: 1px solid var(--b1);
}

.sk-item:last-child {
    border: none;
}

.sk-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
}

.sk-ic {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(79, 142, 247, .09);
    border: 1px solid var(--b1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    font-size: 13px;
}

.sk-name {
    font-size: 13.5px;
    font-weight: 600;
    flex: 1;
}

.sk-pct {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--blue);
}

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

.sk-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    border-radius: 3px;
    width: 0;
    transition: width 1.4s cubic-bezier(.16, 1, .3, 1);
}

.soft-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 24px;
}

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

/* ══════════════════════
   SERVICES
══════════════════════ */
#services {
    background: var(--bg1);
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--b1);
    border-radius: var(--r2);
    overflow: hidden;
}

.srv {
    background: var(--bg2);
    padding: 36px 30px;
    transition: background .3s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.srv::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 142, 247, .05), transparent 55%);
    opacity: 0;
    transition: opacity .3s;
}

.srv:hover {
    background: var(--bg3);
}

.srv:hover::after {
    opacity: 1;
}

.srv-ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--b2);
    background: rgba(79, 142, 247, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 22px;
    margin-bottom: 18px;
    transition: box-shadow .3s;
}

.srv:hover .srv-ic {
    box-shadow: 0 0 22px rgba(79, 142, 247, .25);
}

.srv h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 9px;
    letter-spacing: -.01em;
}

.srv p {
    color: var(--ink2);
    font-size: 13px;
    line-height: 1.72;
    margin-bottom: 16px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

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

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

/* ══════════════════════
   PROJECTS
══════════════════════ */
#work {
    background: var(--bg);
}

.proj-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.proj {
    background: var(--bg2);
    border: 1px solid var(--b1);
    border-radius: var(--r2);
    overflow: hidden;
    transition: all .3s;
    cursor: default;
}

.proj:hover {
    border-color: var(--b2);
    transform: translateY(-5px);
    box-shadow: 0 18px 52px rgba(0, 0, 0, .45);
}

.proj-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.proj-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--bg2));
}

.proj-img i {
    font-size: 64px;
    opacity: .45;
}

.proj-body {
    padding: 24px;
}

.proj-cat {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--cyan);
    letter-spacing: .12em;
    margin-bottom: 7px;
}

.proj-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 9px;
    letter-spacing: -.01em;
}

.proj-desc {
    color: var(--ink2);
    font-size: 13px;
    line-height: 1.72;
    margin-bottom: 14px;
}

.proj-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    transition: gap .2s;
}

.proj-link:hover {
    gap: 10px;
}

.proj-link i {
    font-size: 14px;
}

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

/* ══════════════════════
   TECH STACK
══════════════════════ */
#tech {
    background: var(--bg1);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.tc {
    background: var(--bg2);
    border: 1px solid var(--b1);
    border-radius: var(--r2);
    padding: 26px;
    transition: border-color .3s;
}

.tc:hover {
    border-color: var(--b2);
}

.tc-hd {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tc-hd i {
    font-size: 13px;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.pill {
    padding: 6px 13px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--b1);
    border-radius: 8px;
    font-size: 12.5px;
    color: var(--ink2);
    transition: all .2s;
    cursor: default;
}

.pill:hover {
    background: rgba(79, 142, 247, .1);
    border-color: var(--b2);
    color: var(--ink);
    transform: translateY(-2px);
}

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

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

/* ══════════════════════
   WHY ME
══════════════════════ */
#why {
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.wy-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wy {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--r2);
    transition: all .3s;
    cursor: default;
}

.wy:hover {
    background: rgba(79, 142, 247, .06);
    transform: translateX(6px);
}

.wy-ic {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(79, 142, 247, .09);
    border: 1px solid var(--b1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 20px;
    transition: all .3s;
}

.wy:hover .wy-ic {
    background: rgba(79, 142, 247, .18);
    box-shadow: 0 0 18px rgba(79, 142, 247, .2);
}

.wy h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.wy p {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.62;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ws {
    background: var(--bg2);
    border: 1px solid var(--b1);
    border-radius: var(--r2);
    padding: 24px;
    text-align: center;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.ws::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    transform: scaleX(0);
    transition: transform .4s;
}

.ws:hover {
    background: var(--bg3);
    border-color: var(--b2);
    transform: translateY(-3px);
}

.ws:hover::after {
    transform: scaleX(1);
}

.ws-v {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ws-l {
    font-size: 12px;
    color: var(--ink2);
    margin-top: 3px;
}

@media(max-width:800px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .why-stats .ws {
        grid-column: span 1 !important;
    }
}

/* ══════════════════════
   PROCESS
══════════════════════ */
#process {
    background: var(--bg1);
}

.proc-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--b1);
    border-radius: var(--r2);
    overflow: hidden;
}

.proc {
    background: var(--bg2);
    padding: 30px 22px;
    transition: all .3s;
    cursor: default;
}

.proc:hover {
    background: var(--bg3);
    transform: translateY(-4px);
}

.proc-n {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--blue);
    letter-spacing: .1em;
    margin-bottom: 18px;
    display: inline-flex;
    padding: 3px 9px;
    border: 1px solid var(--b1);
    border-radius: 100px;
    background: rgba(79, 142, 247, .06);
}

.proc-ic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(167, 139, 250, .08);
    border: 1px solid rgba(167, 139, 250, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    font-size: 19px;
    margin-bottom: 14px;
}

.proc h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px;
}

.proc p {
    font-size: 12.5px;
    color: var(--ink2);
    line-height: 1.65;
}

@media(max-width:800px) {
    .proc-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ══════════════════════
   CONTACT
══════════════════════ */
#contact {
    background: var(--bg);
}

.con-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.con-h {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    line-height: 1.1;
}

.con-s {
    color: var(--ink2);
    margin-bottom: 36px;
    font-size: 14.5px;
    line-height: 1.75;
}

.cdet {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--b1);
}

.cdet:last-child {
    border: none;
}

.cdet-ic {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--b1);
    background: rgba(79, 142, 247, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    font-size: 16px;
}

.cdet-l {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink3);
    letter-spacing: .08em;
    margin-bottom: 2px;
}

.cdet-v {
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 500;
}

.cf {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fg label {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink3);
    letter-spacing: .08em;
}

.fg input,
.fg textarea,
.fg select {
    background: var(--bg2);
    border: 1px solid var(--b1);
    border-radius: var(--r);
    padding: 11px 15px;
    color: var(--ink);
    font-family: var(--font);
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--blue);
}

.fg textarea {
    resize: vertical;
    min-height: 112px;
}

.fg select option {
    background: var(--bg2);
}

.btn-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    padding: 14px;
    border-radius: var(--r);
    border: none;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all .22s;
    box-shadow: 0 0 18px rgba(79, 142, 247, .22);
}

.btn-sub:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(79, 142, 247, .4);
}

.btn-sub i {
    font-size: 16px;
}

@media(max-width:700px) {
    .con-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cf-row {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════
   FOOTER
══════════════════════ */
footer {
    background: var(--bg1);
    border-top: 1px solid var(--b1);
    padding: 56px 32px 28px;
}

.ft-i {
    max-width: 1208px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px;
}

.ft-brand p {
    font-size: 13px;
    color: var(--ink3);
    max-width: 240px;
    line-height: 1.75;
    margin-top: 14px;
}

.ft-col h5 {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--ink3);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.ft-col ul {
    list-style: none;
}

.ft-col li {
    margin-bottom: 9px;
}

.ft-col a {
    color: var(--ink2);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
    cursor: pointer;
}

.ft-col a:hover {
    color: var(--blue);
}

.ft-bot {
    max-width: 1208px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--b1);
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink3);
}

@media(max-width:768px) {
    .ft-i {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .ft-bot {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ── SUB-PAGE SPECIFIC STYLING ── */
.page-header {
    padding: 140px 0 60px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header .h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 18px;
}

.page-header .sub {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

/* ── KEYFRAME ANIMATIONS ── */
@keyframes slideUp {
    from {
        transform: translateY(105%);
    }

    to {
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

@keyframes scrollL {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}