/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    min-height: 100%;
}


body {
    font-family: Arial, Helvetica, sans-serif;

    background: #02050a;

    color: white;

    overflow-x: hidden;
}


/* =========================================
   BACKGROUND
========================================= */

.background {
    position: fixed;

    inset: 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 15%,
            #063b56 0%,
            #03121d 25%,
            #02070d 50%,
            #000000 100%
        );

    z-index: -5;
}


/* =========================================
   STARS
========================================= */

.stars {
    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            circle,
            rgba(255,255,255,.75) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle,
            rgba(255,255,255,.4) 1px,
            transparent 1px
        );

    background-size:
        110px 110px,
        180px 180px;

    background-position:
        0 0,
        50px 80px;

    animation:
        starsMove 30s linear infinite;
}


@keyframes starsMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100px);
    }

}


/* =========================================
   BACKGROUND GLOW
========================================= */

.glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}


.glow-1 {
    width: 450px;
    height: 450px;

    background: #008dcc;

    opacity: .22;

    top: -250px;
    right: -100px;
}


.glow-2 {
    width: 400px;
    height: 400px;

    background: #006eff;

    opacity: .15;

    bottom: -250px;
    left: -150px;
}


/* =========================================
   LOGO
========================================= */

.top-logo {
    position: absolute;

    top: clamp(25px, 4vw, 55px);

    right: clamp(25px, 5vw, 70px);

    z-index: 30;

    animation:
        logoAppear 1s ease forwards;
}


.top-logo img {
    width: clamp(
        170px,
        18vw,
        280px
    );

    height: auto;

    display: block;
}


@keyframes logoAppear {

    from {
        opacity: 0;

        transform:
            translateY(-30px)
            scale(.9);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* =========================================
   MAIN CONTENT
========================================= */

.container {
    position: relative;

    z-index: 10;

    width: 100%;

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding-left: clamp(
        25px,
        10vw,
        160px
    );

    padding-right: 40px;
}


.content {
    width: min(
        600px,
        48vw
    );

    margin-top: 30px;

    animation:
        contentAppear 1.2s ease forwards;
}


@keyframes contentAppear {

    from {
        opacity: 0;

        transform:
            translateX(-50px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


/* =========================================
   SMALL TITLE
========================================= */

.small-title {
    color: #08a8f7;

    font-size: clamp(
        10px,
        1vw,
        14px
    );

    font-weight: 700;

    letter-spacing: clamp(
        3px,
        .45vw,
        6px
    );

    margin-bottom: clamp(
        15px,
        2vw,
        22px
    );
}


/* =========================================
   MAIN HEADING
========================================= */

h1 {
    font-size: clamp(
        55px,
        7vw,
        105px
    );

    line-height: .92;

    letter-spacing: clamp(
        -5px,
        -.35vw,
        -2px
    );

    font-weight: 700;

    margin-bottom: clamp(
        20px,
        3vw,
        35px
    );
}


h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #78d7ff 100%
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


/* =========================================
   DESCRIPTION
========================================= */

.description {
    width: min(
        560px,
        100%
    );

    color: #9ca8b4;

    font-size: clamp(
        14px,
        1.3vw,
        18px
    );

    line-height: 1.7;
}


/* =========================================
   ROCKET AREA
========================================= */

.rocket-area {
    position: absolute;

    z-index: 15;

    right: clamp(
        25px,
        8vw,
        140px
    );

    top: 27%;

    width: clamp(
        270px,
        30vw,
        390px
    );

    display: flex;

    flex-direction: column;

    align-items: center;
}


/* =========================================
   ROCKET
========================================= */

.rocket-container {
    width: clamp(
        190px,
        20vw,
        260px
    );

    height: clamp(
        190px,
        20vw,
        260px
    );

    position: relative;

    animation:
        rocketFloat 5s ease-in-out infinite;
}


@keyframes rocketFloat {

    0% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-20px)
            rotate(-2deg);
    }

    100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

}


/* =========================================
   ROCKET BODY
========================================= */

.rocket {
    position: absolute;

    width: clamp(
        75px,
        8vw,
        100px
    );

    height: clamp(
        135px,
        14vw,
        180px
    );

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%)
        rotate(45deg);

    filter:
        drop-shadow(
            0 0 20px
            rgba(0,168,247,.3)
        );
}


.rocket-body {
    position: absolute;

    width: 70%;
    height: 70%;

    left: 15%;
    top: 12%;

    border-radius:
        50%
        50%
        45%
        45%;

    background:
        linear-gradient(
            90deg,
            #bfcbd3,
            #ffffff,
            #d5dfe5
        );
}


.rocket-body::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 48%;

    top: -25%;
    left: 0;

    border-radius:
        50%
        50%
        0
        0;

    background: #f5f8fa;
}


/* =========================================
   ROCKET WINDOW
========================================= */

.window {
    position: absolute;

    width: 32%;

    aspect-ratio: 1;

    top: 34%;
    left: 34%;

    border-radius: 50%;

    background: #08a8f7;

    border:
        clamp(3px, .5vw, 6px)
        solid
        #bdc8d0;

    box-shadow:
        0 0 20px
        rgba(0,168,247,.8);
}


/* =========================================
   FINS
========================================= */

.fin {
    position: absolute;

    width: 38%;
    height: 32%;

    bottom: 8%;

    background: #08a8f7;

    z-index: -1;
}


.fin-left {
    left: -18%;

    border-radius:
        0
        0
        0
        30px;

    transform:
        skewY(-20deg);
}


.fin-right {
    right: -18%;

    border-radius:
        0
        0
        30px
        0;

    transform:
        skewY(20deg);
}


/* =========================================
   FIRE
========================================= */

.fire {
    position: absolute;

    width: 40%;
    height: 45%;

    left: 30%;
    bottom: -40%;

    transform:
        rotate(180deg);
}


.fire span {
    position: absolute;

    left: 50%;
    bottom: 0;

    transform:
        translateX(-50%);

    width: 45%;
    height: 70%;

    border-radius: 50%;

    background: #08a8f7;

    filter: blur(4px);

    animation:
        flame .3s infinite alternate;
}


.fire span:nth-child(2) {
    width: 28%;
    height: 90%;

    animation-delay: .1s;
}


.fire span:nth-child(3) {
    width: 18%;
    height: 55%;

    animation-delay: .2s;
}


@keyframes flame {

    from {
        transform:
            translateX(-50%)
            scaleY(.8);
    }

    to {
        transform:
            translateX(-50%)
            scaleY(1.2);
    }

}


/* =========================================
   SOCIAL LINKS
========================================= */

.social-links {
    width: 100%;

    display: flex;

    justify-content: center;

    gap: clamp(
        8px,
        1vw,
        15px
    );

    margin-top: 0;

    flex-wrap: wrap;
}


.social {
    min-width: clamp(
        125px,
        12vw,
        150px
    );

    padding:
        clamp(
            11px,
            1vw,
            14px
        )
        clamp(
            14px,
            1.5vw,
            18px
        );

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: white;

    text-decoration: none;

    font-size: clamp(
        12px,
        1vw,
        14px
    );

    font-weight: 600;

    border-radius: 12px;

    border:
        1px solid
        rgba(8,168,247,.55);

    background:
        rgba(3,16,25,.55);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 0 15px
        rgba(8,168,247,.08);

    transition: .35s ease;
}


.social:hover {
    transform:
        translateY(-5px);

    border-color:
        #08a8f7;

    background:
        rgba(8,168,247,.1);

    box-shadow:
        0 0 25px
        rgba(8,168,247,.35);
}


.social strong {
    color: #08a8f7;

    font-size: 18px;
}


.instagram-icon,
.email-icon {
    color: #08a8f7;

    font-size: 18px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    position: fixed;

    bottom: 20px;

    left: clamp(
        25px,
        10vw,
        160px
    );

    color: #56616c;

    font-size: 11px;

    z-index: 20;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .container {
        padding-left: 6%;
    }

    .content {
        width: 52vw;
    }

    .rocket-area {
        right: 4%;
        top: 30%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    body {
        overflow-x: hidden;

        overflow-y: auto;
    }


    /* LOGO */

    .top-logo {
        top: 18px;

        right: 18px;
    }


    .top-logo img {
        width: 145px;
    }


    /* MAIN */

    .container {
        min-height: 100vh;

        height: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        padding:
            370px
            22px
            35px;
    }


    /* CONTENT */

    .content {
        width: 100%;

        margin: 0;

        order: 2;
    }


    .small-title {
        font-size: 10px;

        letter-spacing: 3px;

        margin-bottom: 14px;

        white-space: nowrap;
    }


    h1 {
        font-size: 52px;

        line-height: .9;

        letter-spacing: -3px;

        margin-bottom: 24px;
    }


    .description {
        width: 100%;

        font-size: 14px;

        line-height: 1.55;

        margin-bottom: 0;
    }


    /* ROCKET */

    .rocket-area {
        position: absolute;

        top: 78px;

        left: 0;

        right: 0;

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        z-index: 20;
    }


    .rocket-container {
        width: 175px;

        height: 175px;

        flex-shrink: 0;
    }


    .rocket {
        width: 78px;

        height: 140px;

        left: 50%;

        top: 50%;

        transform:
            translate(-50%, -50%)
            rotate(45deg);
    }


    /* SOCIAL */

    .social-links {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 9px;

        margin-top: -2px;
    }


    .social {
        width: 220px;

        min-width: 220px;

        height: 49px;

        padding: 10px 16px;

        border-radius: 11px;

        font-size: 13px;

        justify-content: center;
    }


    .social strong {
        font-size: 16px;
    }


    .instagram-icon,
    .email-icon {
        font-size: 17px;
    }


    /* FOOTER */

    footer {
        position: relative;

        left: auto;

        bottom: auto;

        text-align: center;

        margin-top: 35px;

        padding-bottom: 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .top-logo {
        top: 15px;

        right: 15px;
    }


    .top-logo img {
        width: 125px;
    }


    .container {
        padding:
            345px
            20px
            30px;
    }


    .rocket-area {
        top: 65px;
    }


    .rocket-container {
        width: 155px;

        height: 155px;
    }


    .rocket {
        width: 70px;

        height: 125px;
    }


    .social {
        width: 205px;

        min-width: 205px;

        height: 46px;

        font-size: 12px;
    }


    .small-title {
        font-size: 9px;

        letter-spacing: 2.5px;
    }


    h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }


    .description {
        font-size: 13px;

        line-height: 1.5;
    }

}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {

    .content {
        width: 650px;
    }


    .rocket-area {
        right: 12%;
    }

}