:root {
            --bg: #0c0c0e;
            --surface: #141416;
            --border: rgba(255, 255, 255, 0.07);
            --text: #e8e8ec;
            --muted: #6b6b78;
            --accent: #b8ff57;
            --accent2: #57c8ff;
            --font-display: 'Syne', sans-serif;
            --font-mono: 'DM Mono', monospace;
            --font-body: 'DM Sans', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--font-body);
            font-weight: 300;
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* ── NOISE OVERLAY ── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 1000;
            opacity: 0.4;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.4rem 3rem;
            border-bottom: 1px solid var(--border);
            background: rgba(12, 12, 14, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: padding 0.3s ease;
        }

        .nav-logo {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--text);
            letter-spacing: -0.02em;
            text-decoration: none;
        }

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

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

        .nav-links a {
            font-family: var(--font-mono);
            font-size: 0.72rem;
            color: var(--muted);
            text-decoration: none;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: color 0.2s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

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

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

        .nav-badge {
            font-family: var(--font-mono);
            font-size: 0.65rem;
            color: var(--accent);
            border: 1px solid rgba(184, 255, 87, 0.3);
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .nav-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.4;
                transform: scale(0.8);
            }
        }

        /* ── SECTIONS ── */
        section {
            padding: 7rem 3rem;
            max-width: 860px;
            margin: 0 auto;
        }

        /* ── HERO ── */
        #hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 8rem;
            padding-bottom: 4rem;
            max-width: 860px;
            margin: 0 auto;
            padding-left: 3rem;
            padding-right: 3rem;
        }

        .hero-eyebrow {
            font-family: var(--font-mono);
            font-size: 0.72rem;
            color: var(--accent);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            opacity: 0;
            animation: fadeUp 0.7s ease 0.2s forwards;
        }

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

        .hero-name {
            font-family: var(--font-display);
            font-size: clamp(3.5rem, 9vw, 7rem);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -0.04em;
            color: var(--text);
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeUp 0.7s ease 0.35s forwards;
        }

        .hero-name .line2 {
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
        }

        .hero-name .cursor {
            display: inline-block;
            width: 4px;
            height: 0.8em;
            background: var(--accent);
            vertical-align: middle;
            margin-left: 4px;
            animation: blink 1.1s step-end infinite;
        }

        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        .hero-tagline {
            font-size: 1.1rem;
            color: var(--muted);
            max-width: 480px;
            margin: 1.5rem 0 3rem;
            line-height: 1.6;
            opacity: 0;
            animation: fadeUp 0.7s ease 0.5s forwards;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.7s ease 0.65s forwards;
        }

        .btn {
            font-family: var(--font-mono);
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.85rem 1.8rem;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.25s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--accent);
            color: #0c0c0e;
            font-weight: 600;
        }

        .btn-primary:hover {
            background: #ceff7a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(184, 255, 87, 0.25);
        }

        .btn-ghost {
            background: transparent;
            color: var(--muted);
            border: 1px solid var(--border);
        }

        .btn-ghost:hover {
            color: var(--text);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .hero-scroll {
            position: absolute;
            bottom: 3rem;
            left: 3rem;
            font-family: var(--font-mono);
            font-size: 0.65rem;
            color: var(--muted);
            letter-spacing: 0.08em;
            writing-mode: vertical-rl;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            opacity: 0;
            animation: fadeIn 1s ease 1.2s forwards;
        }

        .hero-scroll::before {
            content: '';
            width: 1px;
            height: 48px;
            background: linear-gradient(to bottom, var(--muted), transparent);
        }

        /* ── DIVIDER ── */
        .divider {
            width: 100%;
            height: 1px;
            background: var(--border);
            max-width: 860px;
            margin: 0 auto;
        }

        /* ── SECTION HEADER ── */
        .section-label {
            font-family: var(--font-mono);
            font-size: 0.68rem;
            color: var(--muted);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .section-label span {
            color: var(--accent);
            opacity: 0.6;
        }

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

        /* ── ABOUT ── */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .about-text h2 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: var(--muted);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .about-stack {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .stack-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.7rem 1rem;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--muted);
            transition: all 0.25s ease;
            cursor: default;
        }

        .stack-item:hover {
            border-color: rgba(184, 255, 87, 0.3);
            color: var(--text);
            background: rgba(184, 255, 87, 0.04);
        }

        .stack-item .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.5;
        }

        /* ── PROJECTS ── */
        .projects-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .project-card {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 2rem;
            align-items: start;
            padding: 2rem 0;
            border-bottom: 1px solid var(--border);
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .project-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, rgba(184, 255, 87, 0.04), transparent);
            transition: width 0.4s ease;
        }

        .project-card:hover::before {
            width: 100%;
        }

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

        .project-card:hover .project-arrow {
            transform: translate(3px, -3px);
            opacity: 1;
        }

        .project-num {
            font-family: var(--font-mono);
            font-size: 0.65rem;
            color: var(--muted);
            padding-top: 0.2rem;
            letter-spacing: 0.05em;
        }

        .project-title {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 0.4rem;
            transition: color 0.25s;
        }

        .project-desc {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.5;
            margin-bottom: 0.8rem;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .tag {
            font-family: var(--font-mono);
            font-size: 0.62rem;
            padding: 0.2rem 0.6rem;
            border: 1px solid var(--border);
            border-radius: 3px;
            color: var(--muted);
            letter-spacing: 0.04em;
        }

        .project-arrow {
            font-size: 1.1rem;
            color: var(--muted);
            opacity: 0.4;
            transition: all 0.25s ease;
            padding-top: 0.1rem;
        }

        /* ── EXPERIENCE ── */
        .exp-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .exp-item {
            display: grid;
            grid-template-columns: 140px 1fr;
            gap: 2.5rem;
            padding: 2.5rem 0;
            border-bottom: 1px solid var(--border);
        }

        .exp-meta {
            padding-top: 0.2rem;
        }

        .exp-period {
            font-family: var(--font-mono);
            font-size: 0.68rem;
            color: var(--muted);
            letter-spacing: 0.04em;
            line-height: 1.4;
        }

        .exp-body h3 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-bottom: 0.2rem;
        }

        .exp-company {
            font-family: var(--font-mono);
            font-size: 0.72rem;
            color: var(--accent);
            margin-bottom: 0.8rem;
            letter-spacing: 0.04em;
        }

        .exp-body ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .exp-body li {
            font-size: 0.88rem;
            color: var(--muted);
            padding-left: 1.2rem;
            position: relative;
            line-height: 1.5;
        }

        .exp-body li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--accent);
            opacity: 0.5;
            font-size: 0.8rem;
        }

        /* ── CONTACT ── */
        #contact {
            text-align: center;
        }

        #contact h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.04em;
            margin-bottom: 1rem;
            line-height: 1;
        }

        #contact h2 em {
            font-style: normal;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
        }

        #contact p {
            color: var(--muted);
            font-size: 0.95rem;
            max-width: 380px;
            margin: 0 auto 2.5rem;
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .contact-link {
            font-family: var(--font-mono);
            font-size: 0.68rem;
            color: var(--muted);
            text-decoration: none;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

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

        /* ── FOOTER ── */
        footer {
            border-top: 1px solid var(--border);
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 100%;
        }

        footer span {
            font-family: var(--font-mono);
            font-size: 0.65rem;
            color: var(--muted);
            letter-spacing: 0.06em;
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

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

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

        /* ── MOBILE & TABLET ── */
        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
            }

            section {
                padding: 5rem 1.5rem;
            }

            #hero {
                padding: 7rem 1.5rem 3rem;
            }

            .hero-name {
                font-size: clamp(2.8rem, 12vw, 4.5rem);
            }

            .hero-tagline {
                font-size: 1rem;
                margin: 1.5rem 0 2rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
            }

            .hero-cta .btn {
                text-align: center;
                width: 100%;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .about-text h2 {
                font-size: 1.8rem;
            }

            .project-card {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 1.5rem 0;
                position: relative;
            }

            .project-num {
                padding-top: 0;
            }

            .project-arrow {
                position: absolute;
                top: 1.5rem;
                right: 0;
            }

            .exp-item {
                grid-template-columns: 1fr;
                gap: 0.5rem;
                padding: 1.5rem 0;
            }

            #contact h2 {
                font-size: clamp(2rem, 8vw, 2.5rem);
            }

            .contact-links {
                gap: 1rem;
                flex-direction: column;
            }

            .hero-scroll {
                display: none;
            }

            footer {
                padding: 2rem 1.5rem;
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        /* ── POSITION FOR HERO SCROLL ── */
        #hero {
            position: relative;
        }
