header {
    color: var(--white);
    background-color: var(--black);
}

.static {
    background-color: var(--black);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    height: fit-content;
    z-index: 15;
}

.static-border {
    z-index: 13;
    border-image: conic-gradient(from 0deg at 55% 50%, var(--dark-green)45deg, var(--dark-purple)45deg 225deg, var(--dark-green)225deg);
    border-image-width: 0 0 5px 0;
    border-style: solid;
    border-image-slice: 1;
    height: 5px;
    /* margin-top: 80px; */
}

.static>.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.logo-img {
    width: 3rem;
}

.wordmark-line {
    height: 100%;
    max-width: 18rem;
}

.menus {
    display: inherit;
    gap: 1.5rem;
    margin-inline: 1rem;
}

.hamburger {
    display: none;
}

.ronn-icon {
    height: 1.35em;
}

.all-menu,
.info-menu,
.botbuster-menu,
.mobile-menu {
    position: fixed;
    z-index: 13;
    background: var(--black);
    width: 100%;
    box-sizing: border-box;
    height: fit-content;
    transition: top .2s ease;
}

.botbuster-menu,
.info-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    padding-inline: 5%;
    padding-bottom: 1rem;
    gap: 5rem;
    border-image: conic-gradient(from 0deg at 55% 50%, var(--dark-green)45deg, var(--dark-purple)45deg 225deg, var(--dark-green)225deg);
    border-image-width: 0 0 5px 0;
    border-style: solid;
    border-image-slice: 1;
    height: fit-content;
}

.botbuster-menu{
    grid-template-columns: 1fr 1fr 1fr;
    margin: auto;
}

@media screen and (min-width: 500px) {
    header a{
        font-size: var(--fs-small);
    }
}


.botbuster-menu,
.info-menu,
.all-menu,
.mobile-menu {
    top: -400px;
}

.botbuster-menu .links,
.buy,
.info-menu .links,
.buy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-block: 2rem;
}

.info-menu .buy,
.botbuster-menu .buy {
    max-width: 800px;
}


.info-menu .links,
.botbuster-menu .links {
    /* max-width: 500px; */
    width: 100%;
    min-width: 250px;
}

.info-menu .links:nth-child(2) {
    flex-direction: row;
    padding-block: 0;
}

.links>button,
.mobile-menu .solid-bow,
.all-menu .buttons>button,
header>button {
    border-radius: 1rem;
    border: 3px solid transparent;
    border-radius: 1rem;
    box-sizing: border-box;

    font-family: var(--ff-sans);
    font-weight: var(--ff-medium);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links>button,
.mobile-menu .solid-bow,
.all-menu .buttons>button {
    font-size: var(--fs-small);
    padding: .5rem;
    padding-inline: 1rem;
    width: 100%;
}

.socials>* {
    margin-inline: .5rem;
}

.all-menu,
.mobile-menu {
    display: none;
}

a {
    color: var(--white);
}

.open-menu {
    top: 79px !important;
}

.fixed{
    position: fixed;
    width: 100%;
}

.static-border.fixed{
    margin-top: 80px;
}

main.fixed{
    position: relative;
    margin-top: 85px;
}

.rotated {
    rotate: 180deg;
}

.fa-solid {
    transition: rotate .2s ease;
}

.email-error{
    position: absolute;
    display: none;
    font-weight: var(--fw-regular);
    color: var(--red);
    top: 125%;
    right: 0;
}

.red-border {
    position: relative;
    box-sizing: border-box;
    display: flex;
    background: var(--white);
    border: 3px solid transparent;
    border-radius: 1rem;
    width: 100%;
    border: 3px solid var(--red);
    background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--red) border-box;
}

.purchase-banner{
    width: 100%; 
    height: 100%;
    border-radius: .25rem;
    transition: box-shadow .2s linear;
}

.desktop {
    background-image: url("/img/kickstarter-promo.webp");
    background-size: cover;
    background-position: 100%;
    aspect-ratio: 800 / 250;
    border-radius: .25rem;

}

.mobile {
    background-image: url("/img/kickstarter-promo-mobile.webp");
    background-size: cover;
    background-position: center;
    aspect-ratio: 500 / 400;
    width: 85%;
    height: 300px;
}

.purchase-banner:hover {
    box-shadow: 0 0 10px var(--white);
}

.scroll-down{
    transform: translate3d(0, -100%, 0);
}

.scroll-up{
    transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 1000px) {

    .botbuster-menu,
    .info-menu,
    .menus {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .all-menu {
        display: flex;
        flex-direction: column;
        padding: 2rem;
        padding-top: 1rem;
        gap: 1rem;
        top: -110%;
        border-image: conic-gradient(from 0deg at 55% 50%, var(--dark-green)45deg, var(--dark-purple)45deg 225deg, var(--dark-green)225deg);
        border-image-width: 0 0 5px 0;
        border-style: solid;
        border-image-slice: 1;
    }

    .buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        width: 100%;
    }

    .quick-links{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1rem;
    }

    .all-menu .links {
        display: flex;
        gap: 1rem;
        width: 100%;
        justify-content: space-between;
        justify-items: start;
    }

    .all-menu .socials {
        padding-top: 1rem;
    }
}

@media screen and (max-width: 500px) {
    .static {
        justify-content: center;
        border-left: 5px solid var(--dark-green);
        border-right: 5px solid var(--dark-purple);
        padding-inline: 0;
    }

    .hamburger,
    .logo-img,
    .all-menu {
        display: none;
    }

    .static{
        position: fixed;
        width: 100%;
    }

    .mobile-menu {
        position: fixed;
        padding-top: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        gap: 1rem;
        top: -495px;
        border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 1rem;
        border-bottom: 5px solid #0000;
        border-left: 5px solid #0000;
        border-right: 5px solid var(--dark-purple);
        border-top: 0;
        background:
            linear-gradient(var(--black), var(--black)) padding-box,
            conic-gradient(from 0deg at 67% 75%, var(--dark-green)45deg, var(--dark-purple)45deg 225deg, var(--dark-green)225deg) border-box;
    }

    .open-menu {
        top: 70px !important;
    }

    .mobile-menu>.links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-content: center;
        max-width: 300px;
        gap: .5rem;
        justify-items: center;
    }

    .buy{
        width: 80%;
    }

    .pulldown {
        width: 100%;
        border-radius: 1rem;
    }

    .static-border {
        display: none;
    }

    .open-menu {
        top: 10%;
    }
}