/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "DM Sans", sans-serif;
    color: #171717;
    background: #fbfaf8;
}


/* =========================
   BACKGROUND
========================= */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background-image:
        radial-gradient(circle, rgba(0, 0, 0, 0.055) 1px, transparent 1px);

    background-size: 32px 32px;

    mask-image: linear-gradient(
        to bottom,
        black 0%,
        rgba(0, 0, 0, 0.65) 55%,
        transparent 100%
    );
}


/* =========================
   NAVBAR
========================= */

.navbar {
    height: 76px;
    width: 100%;

    display: flex;
    align-items: center;

    padding: 0 46px;

    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid #ece8e2;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* LOGO */

.logo {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -1.2px;
}

.logo span {
    color: #ff4614;
}


/* NAV LINKS */

.nav-links {
    display: flex;
    gap: 34px;
    margin-left: 42px;
}

.nav-links a {
    color: #454545;
    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ff4614;
}


/* RIGHT SIDE */

.nav-right {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 30px;
}


/* LANGUAGE */

.language-switch {
    height: 38px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 4px 8px;

    border: 1px solid #ddd7cf;
    border-radius: 22px;

    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.language-switch .globe {
    font-size: 20px;
    color: #777;
}

.language-switch .active {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 45px;
    height: 30px;

    border-radius: 18px;

    background: #ff4614;
    color: white;
}


/* LOGIN */

.login {
    color: #292929;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
}


/* =========================
   BUTTON
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 46px;
    padding: 0 20px;

    border-radius: 11px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn-orange {
    background: #ff4614;
    color: white;

    box-shadow: 0 7px 20px rgba(255, 70, 20, 0.18);
}

.btn-orange span {
    font-size: 23px;
    line-height: 1;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 70, 20, 0.25);
}


/* =========================
   MAIN
========================= */

.coming-soon {
    min-height: calc(100vh - 76px - 60px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 20px;
}


/* BADGE */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 17px;

    border: 1px solid #ffb89e;
    border-radius: 30px;

    color: #e94316;

    font-size: 14px;
    font-weight: 600;

    background: rgba(255, 255, 255, 0.5);
}

.badge span {
    font-size: 18px;
}


/* HEADLINE */

h1 {
    margin-top: 30px;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;

    letter-spacing: -4px;
    font-weight: 700;
}

h1 span {
    color: #ff4614;
}


/* DESCRIPTION */

.description {
    margin-top: 30px;

    max-width: 650px;

    color: #555;

    font-size: 19px;
    line-height: 1.65;
}


/* STATUS */

.status {
    margin-top: 40px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 20px;

    border-radius: 30px;

    background: #fff;
    border: 1px solid #e5ded6;

    font-size: 15px;
    font-weight: 600;
}

.status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #ff4614;

    box-shadow: 0 0 0 5px rgba(255, 70, 20, 0.10);
}


/* SMALL TEXT */

.small-text {
    margin-top: 18px;

    color: #888;

    font-size: 14px;
}


/* =========================
   FOOTER
========================= */

footer {
    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 46px;

    color: #999;

    font-size: 13px;

    border-top: 1px solid #ece8e2;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .navbar {
        height: auto;
        min-height: 70px;

        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        gap: 10px;
    }

    .login {
        display: none;
    }

    .language-switch {
        height: 36px;
    }

    .btn {
        min-height: 42px;
        padding: 0 15px;

        font-size: 14px;
    }

    .coming-soon {
        min-height: calc(100vh - 70px - 70px);

        padding: 60px 20px;
    }

    h1 {
        font-size: clamp(42px, 12vw, 62px);
        letter-spacing: -2.5px;
    }

    .description {
        font-size: 17px;
        line-height: 1.55;
    }

    footer {
        padding: 20px;

        flex-direction: column;
        gap: 5px;
    }
}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {

    .logo {
        font-size: 22px;
    }

    .nav-right {
        margin-left: auto;
    }

    .language-switch {
        display: none;
    }

    .badge {
        font-size: 12px;
    }

    h1 {
        margin-top: 24px;
    }

    .description {
        margin-top: 24px;
    }

    .status {
        margin-top: 32px;
    }
}
