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

body {
    font-family: "Inter", "Poppins", sans-serif;
    background-color: #fff;
    color: #000;
}

#header {
    width: 90%;
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translate(-50%, -140%);
    z-index: 49;
    display: flex;
    padding: 12px 24px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #d7e6c3;
    border-radius: 18px;
    background-color: #ffffff56;
    backdrop-filter: blur(9px);
    animation: slideDown 0.4s ease-out 0.86s forwards;
}

@keyframes slideDown {
    0% {
        transform: translate(-50%, -100%);
    }
    100% {
        transform: translate(-50%, 0);
    }
}

.header-right a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-right a span {
    font-size: 12.5px;
    color: #000;
    font-weight: 300;
    font-family: Inter, sans-serif;
}

#dotBackground {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    z-index: -1;
}

.wrapper {
    width: 82%;
    margin: 0 auto;
}

#hero {
    width: 100%;
    margin-top: 7.5rem;
    background-image: url("../assets/images/2EB7Uo.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    padding: 120px;
    transform: scale(0);
    animation: popup 0.4s ease-out 0.4s forwards;
}

@keyframes popup {
    0% {
        transform: scale(0.94);
    }
    100% {
        transform: scale(1);
    }
}

.hero-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-logo {
    width: 156px;
    height: 112px;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    text-align: center;
}

.hero-content {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 19.2px;
}

.launching-text {
    font-family: "Figtree", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    background: linear-gradient(
        90deg,
        var(--color-black-solid, #000) 18%,
        var(--color-chartreuse-green-48, #82b73d) 88%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -30px;
}

@media (min-width: 1440px) {
    #header {
        width: 86%;
    }

    .wrapper {
        width: 78%;
        margin: 0 auto;
    }

    #hero {
        padding: 110px;
        margin-top: 7.8rem;
    }
    .launching-text {
        font-size: 60px;
        max-width: 1400px;
        text-align: center;
    }
}

@media (max-width: 1034px) {
    #hero {
        padding: 80px;
        margin-top: 9rem;
    }

    .launching-text {
        font-size: 60px;
        max-width: 400px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    #header {
        padding: 10px 20px;
    }
    .header-right a {
        gap: 10px;
    }
    .header-right a span {
        font-size: 11px;
    }
    .header-right a img {
        width: 35px;
        height: 35px;
    }
    .wrapper {
        width: 90%;
        margin: 0 auto;
    }
    .left-logo {
        width: 86px;
        height: 30px;
    }
    .right-logo {
        width: 106px;
        height: 32px;
    }
    #hero {
        margin-top: 10rem;
        padding: 50px;
    }

    .hero-logo {
        width: 120px;
        height: unset;
    }
    .hero-content {
        font-size: 16px;
        max-width: 432px;
        font-weight: 400;
    }
    .launching-text {
        font-size: 44px;
    }
}

@media (max-width: 540px) {
    #header {
        padding: 10px 20px;
    }
    .header-right a {
        gap: 10px;
    }
    .header-right a span {
        font-size: 11px;
    }
    .header-right a img {
        width: 32px;
        height: 35px;
    }
    .left-logo {
        width: 80px;
        height: 30px;
    }
    .right-logo {
        width: 100px;
        height: 32px;
    }
    #hero {
        margin-top: 10rem;
        padding: 32px;
    }

    .hero-container {
        gap: 46px;
    }

    .hero-logo {
        width: 100px;
        height: unset;
    }
    .hero-content {
        font-size: 16px;
    }
    .launching-text {
        font-size: 33px;
    }
}

@media (max-width: 480px) {
    #header {
        padding: 8px 16px;
    }
    .header-right a {
        gap: 8px;
    }
    .header-right a span {
        font-size: 9px;
    }
    .header-right a img {
        width: 30px;
        height: 30px;
    }
    .left-logo {
        width: 80px;
        height: 30px;
    }
    .right-logo {
        width: 100px;
        height: 32px;
    }
    #hero {
        margin-top: 10rem;
        padding: 32px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-logo {
        width: 100px;
        height: unset;
    }
    .hero-content {
        font-size: 14px;
    }
    .launching-text {
        font-size: 26px;
        margin-top: -18px;
    }
}
