:root {
            --bg: #0b1020;
            --card: rgba(18, 25, 46, 0.8);
            --border: rgba(255, 255, 255, 0.08);
            --text: #f5f7ff;
            --muted: #a8b0c7;
            --accent: #7c5cff;
            --accent-hover: #9378ff;
            --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            font-family: "Inter", sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at top left, rgba(124, 92, 255, 0.35), transparent 35%),
                radial-gradient(circle at bottom right, rgba(0, 209, 255, 0.2), transparent 30%),
                var(--bg);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 960px;
            background: var(--card);
            border: 1px solid var(--border);
            backdrop-filter: blur(18px);
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .hero {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 2rem;
            align-items: center;
            padding: 3rem;
        }

        .hero-text h1 {
            font-size: clamp(2.5rem, 6vw, 4.75rem);
            line-height: 0.95;
            font-weight: 900;
            letter-spacing: -0.05em;
            margin-bottom: 1rem;
            text-transform: lowercase;
        }

        .hero-text p {
            color: var(--muted);
            font-size: 1.05rem;
            line-height: 1.7;
            max-width: 38rem;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            display: block;
            border-radius: 22px;
            object-fit: cover;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .content {
            padding: 0 3rem 3rem;
        }

        .section-title {
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 1rem;
        }

        .project-list {
            list-style: none;
            display: grid;
            gap: 1rem;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .project-card:hover {
            transform: translateY(-4px);
            border-color: rgba(124, 92, 255, 0.6);
        }

        .project-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            padding: 1.4rem 1.5rem;
            color: inherit;
            text-decoration: none;
        }

        .project-info h2 {
            font-size: 1.1rem;
            margin-bottom: 0.35rem;
        }

        .project-info span {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .tag {
            padding: 0.45rem 0.8rem;
            border-radius: 999px;
            background: rgba(124, 92, 255, 0.14);
            border: 1px solid rgba(124, 92, 255, 0.35);
            color: #d8d0ff;
            font-size: 0.82rem;
            white-space: nowrap;
        }

        @media (max-width: 820px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 2rem;
            }

            .content {
                padding: 0 2rem 2rem;
            }

            .project-link {
                flex-direction: column;
                align-items: flex-start;
            }
        }