    :root {
        --bg: #0b1020;
        --card: rgba(255, 255, 255, 0.06);
        --card2: rgba(255, 255, 255, 0.08);
        --text: rgba(255, 255, 255, 0.92);
        --muted: rgba(255, 255, 255, 0.68);
        --line: rgba(255, 255, 255, 0.12);
        --accent: #7c3aed;
        /* purple */
        --accent2: #22c55e;
        /* green */
        --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
        --radius: 18px;
        --max: 1100px;
    }

    @media (prefers-color-scheme: light) {
        :root {
            --bg: #f6f7fb;
            --card: rgba(0, 0, 0, 0.04);
            --card2: rgba(0, 0, 0, 0.06);
            --text: rgba(0, 0, 0, 0.88);
            --muted: rgba(0, 0, 0, 0.62);
            --line: rgba(0, 0, 0, 0.10);
            --shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
        }
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    html,
    body {
        height: 100%;
    }

    body {
        margin: 0;
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
        background: radial-gradient(1203px 803px at 21% -9%, rgba(124, 58, 237, 0.35), transparent 57%),
            radial-gradient(1000px 700px at 110% 10%, rgba(34, 197, 94, 0.25), transparent 55%),
            radial-gradient(800px 600px at 40% 120%, rgba(59, 130, 246, 0.18), transparent 10%),
            var(--bg);
        color: var(--text);
        line-height: 1.5;
        background-repeat: no-repeat;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    .wrap {
        max-width: var(--max);
        margin: 0 auto;
        padding: 24px;
    }

    /* Top nav */
    .nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Row 1 */
    .navTop {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
    }

    /* Row 2: links */
    .links {
        width: 100%;
        justify-content: flex-start;
    }

    /* Small screens: make links scroll instead of wrapping/breaking */
    @media (max-width: 420px) {
        .links {
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            /* Firefox */
        }

        .links::-webkit-scrollbar {
            display: none;
        }

        /* Chrome/Safari */

        .links a {
            white-space: nowrap;
        }

        /* tighten spacing */
        .nav {
            padding: 12px 12px;
        }

        .brand span {
            display: none;
        }

        /* optional: saves space */
        .btn {
            padding: 9px 12px;
        }
    }

    @media (max-width: 360px) {
        .cta a:not(.primary) {
            display: none;
        }
    }

    .links a:hover::after {
        transform: scaleX(1);
        opacity: 0.6;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 180px;
    }

    .logo {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        background: url("./omenanaama.png");
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    .brand b {
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .brand span {
        display: block;
        font-size: 12px;
        color: var(--muted);
        margin-top: -2px;
    }

    .links {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .links a {
        padding: 8px 12px;
        border-radius: 999px;
        border: 1px solid transparent;
        color: var(--muted);
        font-size: 14px;
    }

    .links a:hover {
        color: var(--text);
        border-color: var(--line);
        text-decoration: none;
        background: rgba(255, 255, 255, 0.04);
    }

    .cta {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: flex-end;
        min-width: 180px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.04);
        color: var(--text);
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
    }

    .btn:hover {
        background: rgba(255, 255, 255, 0.07);
    }

    .btn.primary {
        border-color: transparent;
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(59, 130, 246, 0.85));
        box-shadow: 0 14px 35px rgba(124, 58, 237, 0.25);
    }

    .btn.primary:hover {
        filter: brightness(1.05);
    }

    /* Hero */
    .hero {
        padding: 70px 0 28px;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 22px;
        align-items: start;
    }

    @media (max-width: 900px) {
        .hero {
            grid-template-columns: 1fr;
            padding-top: 40px;
        }

        .cta {
            min-width: auto;
        }

        .brand {
            min-width: auto;
        }
    }

    .headline {
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
        box-shadow: var(--shadow);
        padding: 26px;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .headline:before,
    .card::before {
        content: "";
        position: absolute;
        inset: -2px;
        background: radial-gradient(600px 300px at 15% 20%, rgba(124, 58, 237, 0.22), transparent 55%),
            radial-gradient(500px 250px at 85% 10%, rgba(34, 197, 94, 0.16), transparent 55%);
        pointer-events: none;
        filter: blur(0.2px);
    }

    .card::before {
        filter: blur(66px);
        transform: rotate(300deg);
        right: -69%;
    }


    .headline>* {
        position: relative;
    }

    .kicker {
        display: inline-flex;
        gap: 10px;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.04);
        color: var(--muted);
        font-size: 13px;
        width: fit-content;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent2);
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
    }

    h1 {
        margin: 14px 0 10px;
        font-size: clamp(32px, 4vw, 54px);
        letter-spacing: -0.03em;
        line-height: 1.05;
    }

    .sub {
        margin: 0 0 18px;
        color: var(--muted);
        font-size: 16px;
        max-width: 60ch;
    }

    .sub .highlight {
        color: var(--text);
    }

    .heroActions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 16px;
    }

    /* Side card */
    .side {
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
        box-shadow: var(--shadow);
        padding: 18px;
    }

    .avatarRow {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .avatar {
        width: 54px;
        height: 54px;
        border-radius: 40%;
        background: url("./omenanaama.png");
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
        background-size: cover;
        background-repeat: no-repeat;
    }

    @media (max-width: 900px) {
        .avatar {
            background-position: center;
        }
    }

    .who b {
        display: block;
        font-size: 16px;
        letter-spacing: -0.01em;
    }

    .who span {
        display: block;
        color: var(--muted);
        font-size: 13px;
        margin-top: 2px;
    }

    .facts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 14px;
    }

    .pill {
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.04);
        border-radius: 14px;
        padding: 10px 12px;
        min-height: 58px;
    }

    .pill .label {
        color: var(--muted);
        font-size: 12px;
    }

    .pill .value {
        font-weight: 700;
        margin-top: 4px;
        letter-spacing: -0.01em;
    }

    /* Sections */
    .grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
        margin: 18px 0 10px;
    }

    @media (max-width: 900px) {
        .grid {
            grid-template-columns: 1fr;
        }
    }

    .card {
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
        box-shadow: var(--shadow);
        padding: 18px;
        overflow: hidden;
    }

    .card h3 {
        color: var(--text);
        margin: 0 0 8px;
        letter-spacing: -0.02em;
        font-size: 16px;
    }

    .card p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
    }

    /* Projects */
    .sectionTitle {
        margin: 26px 0 12px;
        font-size: 14px;
        color: var(--muted);
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .projects {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 22px;
    }

    @media (max-width: 900px) {
        .projects {
            grid-template-columns: 1fr;
        }
    }

    .project {
        padding: 18px;
        border-radius: var(--radius);
        border: 1px solid var(--line);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s ease, transform .18s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .project:hover {
        border-color: var(--shadow);
        transform: translateY(-2px);
    }

    .project .top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
    }

    .tag {
        font-size: 12px;
        color: var(--muted);
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 6px 10px;
        background: rgba(255, 255, 255, 0.04);
        white-space: nowrap;
        transition: background .88s ease;
    }

    .project:hover .top .tag {
        color: var(--text);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    }

    .project h4 {
        margin: 0 0 6px;
        font-size: 16px;
        letter-spacing: -0.02em;
    }

    .project p {
        margin: 0 0 12px;
        color: var(--muted);
        font-size: 14px;
    }

    .project .meta {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
    }

    /* Footer */
    footer {
        padding: 24px 0 40px;
        color: var(--muted);
        font-size: 13px;
        display: flex;
        justify-content: space-between;
        gap: 14px;
        flex-wrap: wrap;
        border-top: 1px solid var(--line);
        margin-top: 2rem;
    }

    /* Small motion */
    @media (prefers-reduced-motion: no-preference) {

        .headline,
        .side,
        .card,
        .project {
            animation: fadeUp .6s ease both;
        }

        .side {
            animation-delay: .05s;
        }

        .card:nth-child(2) {
            animation-delay: .08s;
        }

        .card:nth-child(3) {
            animation-delay: .12s;
        }

        .project:nth-child(2) {
            animation-delay: .08s;
        }

        .project:nth-child(3) {
            animation-delay: .12s;
        }

        .project:nth-child(4) {
            animation-delay: .16s;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    }

    .skip {
        position: absolute;
        left: -999px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }

    .skip:focus {
        left: 24px;
        top: 24px;
        width: auto;
        height: auto;
        padding: 10px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid var(--line);
        color: var(--text);
        z-index: 9999;
    }

    body::after {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.31' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
        mix-blend-mode: overlay;
    }

    /* ==========================
   Option C: DOS / Pixel Build
   ========================== */

    /* Make the "boot" overlay sit above everything */
    .boot {
        position: fixed;
        inset: 0;
        z-index: 9999;
        pointer-events: none;
        display: grid;
        place-items: center;
        color: rgba(255, 255, 255, 0.92);

        /* Pixel “curtain” pattern */
        background:
            radial-gradient(900px 500px at 25% 15%, rgba(124, 58, 237, 0.20), transparent 60%),
            radial-gradient(800px 450px at 90% 25%, rgba(34, 197, 94, 0.14), transparent 60%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.82)),
            repeating-linear-gradient(0deg,
                rgba(255, 255, 255, 0.06) 0px,
                rgba(255, 255, 255, 0.06) 1px,
                transparent 1px,
                transparent 4px);

        /* Pixelation feel */
        image-rendering: pixelated;

        /* We'll fade this out after the “build” */
        opacity: 1;
        transition: opacity .45s ease;
    }

    /* Content in the middle */
    .boot-inner {
        width: min(520px, 86vw);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 16px;
        background: rgba(25, 25, 25, 0.5);
        backdrop-filter: blur(122px);
        padding: 18px 18px 19px;
        position: relative;
        overflow: hidden;
    }

    /* DOS-ish label vibe, but still modern */

    .boot-title,
    .boot-hint {
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    }

    .boot-title {
        font-weight: 700;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.80);
        text-transform: uppercase;
    }

    /* Progress bar */
    .boot-bar {
        height: 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 22, 255, 0.05);
    }

    .boot-bar span {
        display: block;
        height: 100%;
        border-radius: 999px;
        width: 0%;
        background: linear-gradient(90deg, rgba(34, 197, 94, 0.85), rgba(59, 130, 246, 0.80), rgba(124, 58, 237, 0.85));
        filter: drop-shadow(0 0 0.25rem rgba(222, 212, 222, 0.33));
        animation: bootFill 400ms ease-out forwards;
    }

    /* Pixel dissolve mask: looks like blocks “turning on” */
    .boot::after {
        content: "";
        position: absolute;
        inset: 0;
        /* A grid of dots -> pixel feel */
        background:
            repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0 1px, transparent 1px 10px),
            repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.10) 0 1px, transparent 1px 10px);
        opacity: 0.08;
    }

    /* Once loaded, we animate the page itself */
    body.is-booting main,
    body.is-booting header.nav,
    body.is-booting footer {
        opacity: 0;
        transform: translateY(6px);
    }

    body.is-ready main,
    body.is-ready header.nav,
    body.is-ready footer {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 1.6s ease, transform .6s ease;
    }

    /* Slight stagger for sections (makes it feel “constructed”) */
    body.is-ready .headline {
        transition-delay: .05s;
    }

    body.is-ready .side {
        transition-delay: .12s;
    }

    body.is-ready #about {
        transition-delay: .18s;
    }

    body.is-ready .projects {
        transition-delay: .25s;
    }

    body.is-ready footer {
        transition-delay: .32s;
    }

    /* Boot overlay fade out */
    body.is-ready #boot {
        opacity: 0;
    }

    /* After fade, we remove it entirely with JS */
    @keyframes bootFill {
        to {
            width: 100%;
        }
    }

    /* --------------------------
   Hero: shimmer + underline
   -------------------------- */

    .headline h1 {
        position: relative;
        overflow: hidden;
    }

    /* The text “reveals” with a masked shimmer */
    .headline h1 .reveal {
        display: inline-block;
        position: relative;

        /* Start hidden */
        clip-path: inset(0 100% 0 0);
        animation: textReveal 700ms cubic-bezier(.2, .8, .2, 1) forwards;
        animation-delay: 420ms;
    }

    /* Shimmer pass */
    .headline h1 .reveal::after {
        content: "";
        position: absolute;
        inset: -20% -10%;
        background: linear-gradient(120deg,
                transparent 0%,
                rgba(255, 255, 255, 0.20) 12%,
                rgba(255, 255, 255, 0.08) 24%,
                transparent 40%);
        transform: translateX(-140%);
        mix-blend-mode: overlay;
        animation: shimmerPass 1200ms ease forwards;
        animation-delay: 650ms;
        pointer-events: none;
    }

    /* Underline sweep (scanline style) */
    .headline h1::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        height: 6px;
        width: 100%;
        background: linear-gradient(90deg,
                rgba(34, 197, 94, 0.0),
                rgba(34, 197, 94, 0.35),
                rgba(59, 130, 246, 0.30),
                rgba(124, 58, 237, 0.0));
        filter: blur(1px);
        transform: scaleX(0);
        transform-origin: left;
        animation: underlineSweep 800ms cubic-bezier(.2, .9, .2, 1) forwards;
        animation-delay: 740ms;
        opacity: 0.9;
    }

    @keyframes textReveal {
        to {
            clip-path: inset(0 0 0 0);
        }
    }

    @keyframes shimmerPass {
        0% {
            transform: translateX(-140%);
            opacity: 0;
        }

        15% {
            opacity: 1;
        }

        100% {
            transform: translateX(120%);
            opacity: 0;
        }
    }

    @keyframes underlineSweep {
        to {
            transform: scaleX(1);
        }
    }

    /* Reduced motion: disable the boot + fancy movement */
    @media (prefers-reduced-motion: reduce) {

        .boot,
        .boot * {
            animation: none !important;
            transition: none !important;
        }

        body.is-booting main,
        body.is-booting header.nav,
        body.is-booting footer {
            opacity: 1;
            transform: none;
        }

        .headline h1 .reveal {
            clip-path: none;
        }

        .headline h1::after {
            display: none;
        }
    }

    /* Pixel stage reveal overlay */
    .reveal {
        position: fixed;
        inset: 0;
        z-index: 9999;
        pointer-events: none;
        opacity: 1;
        transition: opacity .45s ease;
    }

    /* While reveal runs, keep page slightly “behind glass” */
    body.is-revealing .wrap {
        filter: blur(2px) saturate(115%);
        opacity: .75;
        transform: translateY(6px);
        transition: filter .6s ease, opacity .6s ease, transform .6s ease;
    }

    body.is-ready .wrap {
        filter: none;
        opacity: 1;
        transform: translateY(0);
    }

    /* Respect reduced motion */
    @media (prefers-reduced-motion: reduce) {
        .reveal {
            display: none;
        }

        body.is-revealing .wrap {
            filter: none;
            opacity: 1;
            transform: none;
        }
    }