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

body {
    font-family: "Inter", "Poppins", sans-serif;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    background-image: url("images/lines.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - -410px) center;
    background-size: 1064px;
}

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

.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;
}

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

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

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

.glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ebe718;
    filter: blur(110px);
    z-index: 0;
    /* keep it behind content */
}

.glow-1 {
    top: 0;
    left: 0;
}

.glow-2 {
    bottom: 0;
    left: 25%;
}

.glow-3 {
    top: 30%;
    right: 5%;
}


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

#hero {
    width: 100%;
    margin-top: 7.5rem;
    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: 40px;
}

.hero-logo {
    width: 250px;
    height: 120px;
}

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

.badge {
    font-family: "Montserrat", "Inter", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111;
    color: white;
    padding: 6px 12px 6px 8px;
    border-radius: 30px;
    font-size: 14px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: yellow;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 0, 0);
    }
}

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

.launching-text {
    font-family: "Montserrat";
    font-size: 60px;
    width: 100vw;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(90deg, #222, #999900, #222);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

    #hero {
        margin-top: 9.8rem;
    }

    .launching-text {
        font-size: 88px;
        max-width: 1400px;
        text-align: center;
    }
}

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

    .launching-text {
        font-size: 59px;
        max-width: 1400px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    #header {
        padding: 16px 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: 9rem;
    }

    .hero-content {
        font-size: 16px;
        max-width: 432px;
        font-weight: 400;
    }

    .launching-text {
        font-size: 56px;
    }
}

@media (max-width: 540px) {
    #header {
        padding: 15px 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: 8rem;
    }

    .hero-container {
        gap: 46px;
    }

    .hero-content {
        font-size: 16px;
    }

    .launching-text {
        font-size: 33px;
    }
}

@media (max-width: 480px) {
    #header {
        padding: 14px 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: 8rem;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-content {
        font-size: 14px;
    }

    .launching-text {
        font-size: 30px;
        margin-top: -18px;
    }
}