.cf-error-details,
.cf-code {
    display: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #16171a 0%, rgba(37, 21, 67, 0.8) 100%);

    color: rgba(247, 246, 251, 1);
    font-family: "IBM Plex Sans", sans-serif;
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 32px;
    width: 112px;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    height: 50px;
}

.logo-text {
    height: 19px;
    filter: invert(1);
}

.fill-accent {
    fill: #a576fa;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px); /* Reduce blur to keep gradients visible */
    opacity: 0.5;
    animation: moveOrb var(--duration) linear infinite alternate;
    background: radial-gradient(
        circle,
        rgba(162, 114, 245, 1) 0%,
        rgba(162, 114, 245, 0.8) 20%,
        rgba(162, 114, 245, 0.6) 40%,
        rgba(162, 114, 245, 0.4) 60%,
        rgba(162, 114, 245, 0.2) 80%,
        rgba(162, 114, 245, 0) 100%
    );
}

.orb.color2 {
    background: radial-gradient(circle, #b57dff 0%, #b57dffcc 20%, #b57dff99 40%, #b57dff66 60%, #b57dff33 80%, #b57dff00 100%);
}

main {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 16px;
}

#title {
    max-width: 327px;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
}

#description {
    max-width: 327px;
    font-size: 16px;
    line-height: 150%;
}

#contact {
    max-width: 327px;
    font-size: 16px;
    line-height: 150%;
    margin-top: 8px;
}

/* Link styles with all states to override browser defaults */
a.a-link,
a.a-link:link,
a.a-link:visited,
a.a-link:active {
    color: #a576fa;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a.a-link:hover {
    color: #a576fa;
    opacity: 0.8;
    text-decoration: underline;
}

a.a-link:focus {
    color: #a576fa;
    outline: 2px solid #a576fa;
    outline-offset: 2px;
}

#logo {
    position: absolute;
    top: 40px;
}

.desktop {
    display: none;
}

br {
    content: " ";
}

@media screen and (min-width: 744px) {
    .logo-container {
        height: 32px;
        width: 155px;
    }

    .logo-text {
        height: 26px;
    }

    main {
        row-gap: 24px;
    }

    #title {
        max-width: 679px;
        font-size: 40px;
        line-height: 120%;
    }

    #description {
        max-width: 679px;
    }

    #contact {
        max-width: 679px;
    }

    br {
        content: none;
    }

    .desktop {
        display: block;
    }

    .mobile {
        display: none;
    }
}

@media screen and (min-width: 1280px) {
    #title {
        font-size: 48px;
        line-height: 120%;
    }
}

@keyframes moveOrb {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(calc(var(--moveX1) * 1px), calc(var(--moveY1) * 1px));
    }
    50% {
        transform: translate(calc(var(--moveX2) * 1px), calc(var(--moveY2) * 1px));
    }
    75% {
        transform: translate(calc(var(--moveX3) * 1px), calc(var(--moveY3) * 1px));
    }
    100% {
        transform: translate(calc(var(--moveX4) * 1px), calc(var(--moveY4) * 1px));
    }
}
