    :root {
        --primary-bg: black;
        --primary-text: white;
        --accent: #4686FB;
        /* your top border blue */
        --highlight: #0c08da;
        /* hover/active red */
        --border-color: #232933;
    }


    body {
        background-color: var(--primary-bg);
        padding: auto;
        font-family: 'Poppins', sans-serif;
        margin: -1px;
        min-height: 100%;
        max-width: 110dvw;
        color: white;
        word-spacing: 1%;


    }

    body {
        animation: fadeIn 0.6s ease-in-out;
    }

    body.fade-out {
        animation: fadeOut 0.4s ease-in-out forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeOut {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

    #hero {
        display: flex;
        flex-direction: row;
        background-color: var(--primary-bg);

        color: var(--primary-text);
        padding: 5%;
        text-align: center;
        justify-content: center;

        font-weight: 900;

        border-bottom: var(--accent) 4px solid;
    }

    @keyframes heroFlyIn {
        0% {
            transform: translateX(-100vw) rotateY(-720deg);
            opacity: 0;
        }

        60% {
            transform: translateX(20vw) rotateY(30deg);
            opacity: 1;
        }

        100% {
            transform: translateX(0) rotateY(0deg);
        }
    }




    #hero p {
        padding-right: 25%;
        font-size: 4dvh;
        justify-content: center;
        text-align: center;
    }


    #hero img {
        aspect-ratio: 16/9;
        animation: heroFlyIn 1.4s ease-out;
    }

    img {

        aspect-ratio: 16/9;
        max-width: 100%;
    }

    nav {
        text-align: center;
        margin: 0;
        top: 0;
        padding: 0%;
    }

    nav ul {
        background-color: var(--primary-bg);
        font-size: clamp(.6rem, 1vw, 1.8rem);
        font-weight: 1000;
        list-style: none;
        margin: 0 auto;
        padding: 1rem 2rem;
        border-radius: 5px;
        display: flex;
        justify-content: space-between;
        gap: 2rem;
        border-top: 10px solid var(--accent);
        border-bottom: 10px solid var(--border-color);
    }


    nav ul li {
        margin: 0;
    }

    nav ul li a {
        color: white;
        text-decoration: none;
        padding: 0.5em 1em;
        display: block;
        transition: all 0.2s ease;

        border: white 2px solid;
    }



    nav ul li a:hover {
        border-radius: 10px;

        border-bottom: var(--accent) 5px solid;
    }

    nav ul li a:active {
        transform: rotateX(20deg);

    }

    @keyframes navPop {
        0% {
            transform: scale(0);
            opacity: 0;
        }

        80% {
            transform: scale(1.2);
            opacity: 1;
        }

        100% {
            transform: scale(1);
        }
    }

    nav ul li.animate-nav {
        animation: navPop 0.4s ease-out forwards;
    }

    /* Stagger each nav item */
    nav ul li.animate-nav:nth-child(1) {
        animation-delay: 0.3s;
    }

    nav ul li.animate-nav:nth-child(2) {
        animation-delay: 0.5s;
    }

    nav ul li.animate-nav:nth-child(3) {
        animation-delay: 0.7s;
    }

    nav ul li.animate-nav:nth-child(4) {
        animation-delay: 0.9s;
    }

    nav ul li.animate-nav:nth-child(5) {
        animation-delay: 1.1s;
    }

    nav ul li.animate-nav:nth-child(6) {
        animation-delay: 1.3s;
    }

    nav ul li.animate-nav:nth-child(7) {
        animation-delay: 1.5s;
    }

    nav ul li.animate-nav:nth-child(8) {
        animation-delay: 1.7s;
    }

    /* Keep your hover effect */
    nav ul li a:hover {
        transform: scale(1.05) rotateZ(1deg);
        transition: transform 0.2s ease;
    }



    h1,
    h2 {
        text-align: center;
    }


    #branding {
        color: var(--accent);
        padding: 15px;
    }

    #branding img {
        height: 50px;
        width: 220px;
    }

    #branding p {
        position: absolute;
        color: var(--primary-text);
        top: 0px;
        bottom: -100px;
        justify-content: center;
        text-align: center;
    }

    .socials {
        display: flex;
        flex-direction: row;
        color: var(--accent);
        text-align: center;
        justify-content: space-between;
        gap: 20px;
    }

    .grid {
        display: grid;
        grid-template: 10dvw / auto auto auto;
        gap: 240px;
        display: inline-grid;
        color: var(--primary-text);
        padding-left: 15%;
        padding-right: 15%;
        padding-top: 5%;
        padding-bottom: 15%;
        justify-content: center;
        margin: auto;
    }

    .grid a {
        color: var(--primary-text);
        text-align: center;
        text-decoration: none;

        gap: 20px;
    }

    .grid a div:hover {
        transform: scale(1.1);
        cursor: pointer;
    }

    .grid a div img {
        width: 600px;
        height: 100%;
    }

    footer {
        position: static;
        left: 0;
        bottom: 0;
        width: 100vw;

        color: var(--primary-text);
        background-color: var(--primary-bg);
        border-top: 10px solid var(--accent);
        border-bottom: 2px solid white;
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
        gap: 2rem;
    }

    #footer-grid {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        gap: 10dvw;
    }

    footer div {
        margin: 0 auto;
    }

    footer ul {
        list-style: none;
        padding: 0;
    }

    footer ul a {
        color: var(--primary-text);
        text-decoration: none;
        font-size: 1rem;
    }

    footer ul a:visited {
        color: var(--primary-text);
    }

    footer ul a:hover {
        color: var(--accent);
        text-decoration: underline;
        font-size: 1.1rem;
    }

    .careers {
        padding: 5%;
        text-align: center;
        color: var(--primary-text);
        background-color: var(--primary-bg);
    }

    .careers h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--accent);
    }

    .careers p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .job-listing {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .job {
        border: 2px solid var(--border-color);
        border-radius: 12px;
        padding: 2rem;
        max-width: 600px;
        width: 90%;
        background-color: #111;
        transition: transform 0.2s ease;
    }

    .job:hover {
        transform: scale(1.02);
    }

    .apply-btn {
        display: inline-block;
        margin-top: 1rem;
        padding: 0.5rem 1.5rem;
        color: white;
        background-color: var(--accent);
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.2s ease;
    }

    .apply-btn:hover {
        background-color: var(--highlight);
    }




    #privacy-block {
        color: var(--primary-text);
        justify-content: center;
        text-align: center;
        padding-bottom: 15% !important;
        font-size: 2.1em;
        padding: 10%;
    }

    #main-content-block {
        color: var(--primary-text);
        justify-content: center;
        text-align: center;
        padding: 5%;
        font-size: 2em;
    }

    .cta-button {
        display: inline-block;
        padding: 10px 20px;
        margin-top: 20px;
        font-size: 1.2rem;
        text-decoration: none;
        background-color: #007bff;
        color: #fff;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .cta-button:hover {
        background-color: #0056b3;
    }

    .currentLink {
        background-color: white !important;
        color: #111;

        border-bottom: var(--accent) 5px solid;

        border-radius: 5px;
    }



    .blog {
        padding: 5%;
        color: var(--primary-text);
        background-color: var(--primary-bg);
        text-align: left;
    }

    .blog h2 {

        font-size: 3rem;
        text-align: center;
        color: var(--accent);
        margin-bottom: 2rem;
    }

    .post {
        border-bottom: 2px solid var(--border-color);
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .post h3 {

        font-size: 2rem;
        margin-bottom: 0.5rem;
        color: var(--highlight);
        border-radius: 5px;
    }

    .post .date {
        font-size: 0.9rem;
        color: gray;
        margin-bottom: 1rem;
    }

    .post a {
        color: var(--accent);
        text-decoration: none;
        font-weight: bold;
    }

    .post a:hover {
        text-decoration: underline;
    }



    footer a:visited {
        color: white;
    }

    footer a {
        color: white;
    }



    @media screen and (max-width: 800px) {
        .grid {
            flex-direction: column;
            display: flex;
        }

        #hero {
            flex-direction: column;
            padding: 0%;
        }

        nav ul {
            flex-direction: column;
        }

        #hero p {
            padding-right: 0%;
            padding-top: 0%;
            text-align: center;
        }

    }