:root {
            --bg: #0e0e10;
            --surface: #17171a;
            --border: #2a2a30;
            --accent: #c8f03a;
            --accent2: #3affd4;
            --text: #e8e8ec;
            --muted: #7a7a88;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Geologica', sans-serif;
            font-weight: 300;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Grain 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;
            width: 100%;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            border-bottom: 1px solid transparent;
            transition: all 0.3s;
            backdrop-filter: blur(0px);
        }

        nav.scrolled {
            border-bottom-color: var(--border);
            backdrop-filter: blur(20px);
            background: rgba(14,14,16,0.8);
        }

        .nav-logo {
            font-family: 'Unbounded', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: -0.02em;
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--text); }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 3rem 4rem;
            position: relative;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 60% 50% at 80% 50%, rgba(200,240,58,0.06) 0%, transparent 70%),
                radial-gradient(ellipse 40% 60% at 20% 80%, rgba(58,255,212,0.04) 0%, transparent 60%);
        }

        .hero-content {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeUp 0.8s 0.2s forwards;
        }

        .hero-tag::before {
            content: '';
            width: 2rem;
            height: 1px;
            background: var(--accent);
        }

        h1 {
            font-family: 'Unbounded', sans-serif;
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 700;
            line-height: 0.95;
            letter-spacing: -0.03em;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeUp 0.8s 0.4s forwards;
        }

        h1 .accent { color: var(--accent); }
        h1 .accent2 { color: var(--accent2); }

        .hero-desc {
            max-width: 520px;
            font-size: 1.1rem;
            color: var(--muted);
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeUp 0.8s 0.6s forwards;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.8s 0.8s forwards;
        }

        .btn {
            padding: 0.9rem 2rem;
            border-radius: 4px;
            font-family: 'Geologica', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--accent);
            color: #0e0e10;
        }

        .btn-primary:hover {
            background: #d4f548;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(200,240,58,0.25);
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--border);
        }

        .btn-outline:hover {
            border-color: var(--muted);
            transform: translateY(-2px);
        }

        /* Stats */
        .stats {
            position: absolute;
            bottom: 4rem;
            right: 3rem;
            display: flex;
            gap: 3rem;
            opacity: 0;
            animation: fadeUp 0.8s 1s forwards;
        }

        .stat-num {
            font-family: 'Unbounded', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Section */
        section {
            padding: 6rem 3rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-tag {
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .section-tag::after {
            content: '';
            flex: 1;
            max-width: 3rem;
            height: 1px;
            background: var(--accent);
        }

        h2 {
            font-family: 'Unbounded', sans-serif;
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 3rem;
            line-height: 1.1;
        }

        /* Skills grid */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .skill-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 2rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .skill-card:hover {
            border-color: rgba(200,240,58,0.3);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.4);
        }

        .skill-card:hover::before { opacity: 1; }

        .skill-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .skill-title {
            font-family: 'Unbounded', sans-serif;
            font-size: 0.95rem;
            font-weight: 400;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        .skill-desc {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.7;
        }

        /* Projects */
        .projects-list {
            display: flex;
            flex-direction: column;
            gap: 1px;
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }

        .project-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.75rem 2rem;
            background: var(--surface);
            transition: background 0.2s;
            cursor: pointer;
            gap: 2rem;
        }

        .project-item:hover { background: #1e1e22; }

        .project-item + .project-item {
            border-top: 1px solid var(--border);
        }

        .project-name {
            font-family: 'Unbounded', sans-serif;
            font-size: 1rem;
            font-weight: 400;
        }

        .project-tech {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .tag {
            font-size: 0.75rem;
            padding: 0.25rem 0.75rem;
            border-radius: 100px;
            border: 1px solid var(--border);
            color: var(--muted);
        }

        .project-year {
            font-size: 0.85rem;
            color: var(--muted);
            white-space: nowrap;
        }

        /* Contact */
        .contact-wrapper {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,240,58,0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .contact-email {
            font-family: 'Unbounded', sans-serif;
            font-size: clamp(1rem, 3vw, 1.8rem);
            color: var(--accent);
            text-decoration: none;
            display: block;
            margin: 1.5rem 0 2.5rem;
            transition: opacity 0.2s;
        }

        .contact-email:hover { opacity: 0.7; }

        /* Footer */
        footer {
            border-top: 1px solid var(--border);
            padding: 2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--muted);
            font-size: 0.85rem;
            max-width: 100%;
        }

        /* Divider */
        .divider {
            width: 100%;
            height: 1px;
            background: var(--border);
            max-width: 1100px;
            margin: 0 auto;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            nav { padding: 1.25rem 1.5rem; }
            .nav-links { display: none; }
            .hero { padding: 7rem 1.5rem 8rem; }
            section { padding: 4rem 1.5rem; }
            .stats { position: relative; bottom: auto; right: auto; margin-top: 3rem; }
            .contact-wrapper { padding: 2.5rem 1.5rem; }
            footer { flex-direction: column; gap: 1rem; text-align: center; }
            .project-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
        }
