/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ===== Full Background Image ===== */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('comming-soon-assets/bg.jpeg') center center / cover no-repeat;
    z-index: 0;
}

/* ===== Content Overlay ===== */
.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 680px;
    padding: 40px 30px;
}

/* ===== Logo ===== */
.logo-wrapper {
    margin-bottom: 40px;
}

.logo {
    height: 55px;
    width: auto;
}

/* ===== Headings ===== */
.heading-wrapper {
    margin-bottom: 28px;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 30px;
    color: #6b7da0;
    letter-spacing: 0.3px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.coming-soon {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 46px;
    color: #2b5ece;
    letter-spacing: 3px;
    line-height: 1.3;
}

/* ===== Rocket Icon ===== */
.rocket-wrapper {
    margin: 0 auto 24px;
    width: 80px;
    height: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.rocket-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 220%; /* Reduced further to prevent any circular border clipping */
    opacity: 1;
}

/* ===== Description ===== */
.description {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    color: #6a7a9a;
    line-height: 1.75;
    letter-spacing: 0.15px;
}

.description strong {
    font-weight: 600;
    color: #3a5a8a;
}

/* ===== Responsive - Tablet ===== */
@media (max-width: 768px) {
    .content {
        padding: 30px 24px;
        max-width: 90%;
    }

    .logo {
        height: 45px;
    }

    .logo-wrapper {
        margin-bottom: 32px;
    }

    .tagline {
        font-size: 24px;
    }

    .coming-soon {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .heading-wrapper {
        margin-bottom: 22px;
    }

    .rocket-wrapper {
        width: 68px;
        height: 68px;
        margin-bottom: 18px;
    }

    .description {
        font-size: 13px;
    }

    .description br {
        display: none;
    }
}

/* ===== Responsive - Mobile ===== */
@media (max-width: 480px) {
    .content {
        padding: 24px 20px;
        max-width: 95%;
    }

    .logo {
        height: 38px;
    }

    .logo-wrapper {
        margin-bottom: 28px;
    }

    .tagline {
        font-size: 20px;
    }

    .coming-soon {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

    .heading-wrapper {
        margin-bottom: 18px;
    }

    .rocket-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .description {
        font-size: 12px;
        line-height: 1.7;
    }
}

/* ===== Responsive - Very Small ===== */
@media (max-width: 360px) {
    .logo {
        height: 32px;
    }

    .tagline {
        font-size: 17px;
    }

    .coming-soon {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .description {
        font-size: 11.5px;
    }
}
