@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #050505;
    color: #fff;
    min-height: 100vh;
}


/* =========================================
   MAIN
========================================= */

.coming-soon {
    min-height: 100vh;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    padding: 40px 5%;

    background:
        radial-gradient(circle at 50% 45%,
            rgba(224, 40, 42, .09),
            transparent 35%),
        #050505;
}


/* =========================================
   BACKGROUND LINES
========================================= */

.coming-soon::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px);

    background-size: 80px 80px;

    opacity: .6;

    mask-image: linear-gradient(to bottom,
            black 0%,
            transparent 80%);
}


/* =========================================
   RED LIGHT
========================================= */

.coming-soon::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(224, 40, 42, .12),
            transparent 65%);

    filter: blur(30px);

    animation: redLight 6s ease-in-out infinite;

    pointer-events: none;
}

@keyframes redLight {

    0%,
    100% {
        transform:
            translate(-50%, -50%) scale(.9);

        opacity: .5;
    }

    50% {
        transform:
            translate(-50%, -50%) scale(1.15);

        opacity: 1;
    }
}


/* =========================================
   GLOW ELEMENTS
========================================= */

.glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(100px);
}

.glow-one {
    width: 300px;
    height: 300px;

    background: rgba(224, 40, 42, .13);

    top: -150px;
    right: -100px;

    animation: floatOne 8s ease-in-out infinite;
}

.glow-two {
    width: 250px;
    height: 250px;

    background: rgba(224, 40, 42, .08);

    bottom: -150px;
    left: -100px;

    animation: floatTwo 10s ease-in-out infinite;
}

@keyframes floatOne {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-80px, 100px);
    }
}

@keyframes floatTwo {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(100px, -80px);
    }
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 10;

    animation: navIn 1s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes navIn {

    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   LOGO
========================================= */

.logo {
    display: block;

    transition:
        transform .4s ease;
}

.logo svg {
    width: 190px;
    height: auto;

    display: block;

    animation:
        logoIn 1.2s cubic-bezier(.16, 1, .3, 1) .2s both;
}

@keyframes logoIn {

    from {
        opacity: 0;
        transform: translateX(-40px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

.logo:hover {
    transform: scale(1.04);
}


/* =========================================
   CONTACT
========================================= */

.contact {
    position: relative;

    color: #fff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    padding: 14px 25px;

    border: 1px solid rgba(255, 255, 255, .25);

    overflow: hidden;

    transition:
        color .4s ease,
        border-color .4s ease,
        transform .4s ease;
}

.contact::before {
    content: "";

    position: absolute;

    inset: 0;

    background: #E0282A;

    transform: translateX(-101%);

    transition:
        transform .4s cubic-bezier(.16, 1, .3, 1);

    z-index: -1;
}

.contact:hover::before {
    transform: translateX(0);
}

.contact:hover {
    border-color: #E0282A;

    transform: translateY(-3px);
}


/* =========================================
   HERO
========================================= */

.hero {
    width: min(1100px, 100%);

    margin: auto;

    position: relative;
    z-index: 5;

    text-align: center;

    animation:
        heroIn 1.2s cubic-bezier(.16, 1, .3, 1) .25s both;
}

@keyframes heroIn {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   TOP LABEL
========================================= */

.small-text {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #E0282A;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 5px;

    margin-bottom: 30px;

    animation:
        labelIn .9s ease .5s both;
}

.small-text::before {
    content: "";

    width: 30px;
    height: 1px;

    background: #E0282A;
}

@keyframes labelIn {

    from {
        opacity: 0;
        letter-spacing: 12px;
    }

    to {
        opacity: 1;
        letter-spacing: 5px;
    }
}


/* =========================================
   TITLE
========================================= */

h1 {
    margin-bottom: 35px;

    font-size:
        clamp(75px,
            14vw,
            190px);

    line-height: .78;

    letter-spacing: -.09em;

    font-weight: 900;

    text-transform: uppercase;

    animation:
        titleIn 1.3s cubic-bezier(.16, 1, .3, 1) .7s both;
}

@keyframes titleIn {

    from {
        opacity: 0;

        transform:
            translateY(100px) scale(.95);

        filter: blur(15px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0) scale(1);

        filter: blur(0);
    }
}


/* =========================================
   SOON
========================================= */

h1 span {
    display: block;

    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #ffffff 35%,
            #E0282A 50%,
            #ffffff 65%,
            #ffffff 100%);

    background-size: 250% auto;

    background-clip: text;
    -webkit-background-clip: text;

    animation:
        redShine 4s linear infinite,
        soonIn 1.2s cubic-bezier(.16, 1, .3, 1) .9s both;
}

@keyframes redShine {

    from {
        background-position: 0% center;
    }

    to {
        background-position: 250% center;
    }
}

@keyframes soonIn {

    from {
        opacity: 0;

        transform:
            translateY(100px);

        filter: blur(15px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);

        filter: blur(0);
    }
}


/* =========================================
   DESCRIPTION
========================================= */

.description {
    max-width: 500px;

    margin:
        0 auto 35px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;

    animation:
        descriptionIn 1s ease 1.2s both;
}

@keyframes descriptionIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   SUBSCRIBE
========================================= */

.subscribe {
    width: min(520px, 100%);

    margin: auto;

    padding: 4px;

    display: flex;

    background: rgba(255, 255, 255, .035);

    border:
        1px solid rgba(255, 255, 255, .15);

    animation:
        formIn 1s cubic-bezier(.16, 1, .3, 1) 1.4s both;

    transition:
        border-color .4s ease,
        box-shadow .4s ease;
}

@keyframes formIn {

    from {
        opacity: 0;

        transform:
            translateY(30px) scale(.96);
    }

    to {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }
}

.subscribe:focus-within {
    border-color: #E0282A;

    box-shadow:
        0 0 0 1px rgba(224, 40, 42, .15),

        0 0 40px rgba(224, 40, 42, .08);
}


/* =========================================
   INPUT
========================================= */

.subscribe input {
    flex: 1;

    min-width: 0;

    border: none;
    outline: none;

    background: transparent;

    color: white;

    padding:
        16px 18px;

    font-family: inherit;

    font-size: 12px;

    transition:
        padding .3s ease;
}

.subscribe input::placeholder {
    color: #555;
}

.subscribe input:focus {
    padding-left: 24px;
}


/* =========================================
   BUTTON
========================================= */

.subscribe button {
    position: relative;

    border: none;

    background: #E0282A;

    color: #fff;

    cursor: pointer;

    padding:
        0 25px;

    font-family: inherit;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    overflow: hidden;

    transition:
        transform .3s ease,
        background .3s ease;
}

.subscribe button::before {
    content: "";

    position: absolute;

    inset: 0;

    background: #fff;

    transform:
        translateX(-105%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform .4s cubic-bezier(.16, 1, .3, 1);
}

.subscribe button:hover::before {
    transform: translateX(0);
}

.subscribe button:hover {
    color: #000 !important;

    transform: translateY(-2px);
}

.subscribe button {
    isolation: isolate;
}

.subscribe button span {
    display: inline-block;

    position: relative;

    z-index: 2;

    margin-left: 8px;

    font-size: 16px;

    transition:
        transform .3s ease;
}

.subscribe button {
    z-index: 1;
}

.subscribe button:hover span {
    transform: translateX(6px);
}


/* =========================================
   LAUNCH STATUS
========================================= */

.launch {
    margin-top: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: #555;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 3px;

    animation:
        launchIn 1s ease 1.7s both;
}

@keyframes launchIn {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.launch span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #E0282A;

    box-shadow:
        0 0 0 0 rgba(224, 40, 42, .5);

    animation:
        statusPulse 1.6s infinite;
}

@keyframes statusPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(224, 40, 42, .5);
    }

    70% {
        box-shadow:
            0 0 0 10px rgba(224, 40, 42, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(224, 40, 42, 0);
    }
}


/* =========================================
   FOOTER
========================================= */

footer {
    position: relative;

    z-index: 5;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #444;

    font-size: 8px;

    letter-spacing: 1.5px;

    animation:
        footerIn 1s ease 1.9s both;
}

@keyframes footerIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   SOCIAL LINKS
========================================= */

.socials {
    display: flex;

    gap: 25px;
}

.socials a {
    position: relative;

    color: #666;

    text-decoration: none;

    transition:
        color .3s ease;
}

.socials a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: #E0282A;

    transition:
        width .3s ease;
}

.socials a:hover {
    color: #fff;
}

.socials a:hover::after {
    width: 100%;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .coming-soon {
        padding:
            25px 20px;
    }

    .logo svg {
        width: 140px;
    }

    .contact {
        padding:
            11px 15px;

        font-size: 8px;
    }

    .small-text {
        font-size: 8px;

        letter-spacing: 3px;

        margin-bottom: 22px;
    }

    .small-text::before {
        width: 20px;
    }

    h1 {
        font-size:
            clamp(65px,
                20vw,
                110px);

        margin-bottom: 30px;
    }

    .description {
        padding:
            0 10px;

        font-size: 12px;
    }

    .subscribe {
        flex-direction: column;

        gap: 6px;

        padding: 0;

        background: transparent;

        border: none;
    }

    .subscribe input {
        width: 100%;

        padding: 16px;

        border:
            1px solid rgba(255, 255, 255, .15);

        background:
            rgba(255, 255, 255, .03);
    }

    .subscribe button {
        min-height: 50px;

        width: 100%;
    }

    footer {
        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

    .socials {
        gap: 15px;
    }

    .glow-one {
        width: 200px;
        height: 200px;
    }

    .glow-two {
        width: 180px;
        height: 180px;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}


.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

#languageSwitcher {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    outline: none;
}

#languageSwitcher option {
    background: #111;
    color: #fff;
}

#languageSwitcher:hover {
    border-color: #E0282A;
}


/* Mobile */
@media (max-width: 600px) {

    .nav-right {
        gap: 15px;
    }

    .contact {
        display: none;
    }

    #languageSwitcher {
        padding: 8px 10px;
    }

}