/* XEELDHIS Coming Soon */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    font-family: Arial, Helvetica, sans-serif;

    background:
        radial-gradient(
            circle at top,
            rgba(13, 148, 136, 0.08),
            transparent 40%
        ),
        #f8fafc;

    color: #0f172a;
}

.coming-soon {
    width: 100%;
    max-width: 900px;

    min-height: 85vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* BRAND */

.brand {
    margin-bottom: 70px;
}

.brand h1 {
    font-size: clamp(48px, 8vw, 82px);
    font-weight: 800;

    letter-spacing: -3px;
    line-height: 1;
}

.xeel {
    color: #0b1f3a;
}

.dhis {
    color: #0d9488;
}

.brand-description {
    margin-top: 14px;

    color: #64748b;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 4px;
}

/* CONTENT */

.badge {
    display: inline-block;

    margin-bottom: 25px;
    padding: 9px 18px;

    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 50px;

    background: rgba(13, 148, 136, 0.07);

    color: #0f766e;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.content h2 {
    margin-bottom: 18px;

    color: #0b1f3a;

    font-size: clamp(34px, 6vw, 60px);
    font-weight: 700;

    letter-spacing: -1.5px;
}

.description {
    max-width: 550px;

    margin: 0 auto;

    color: #64748b;

    font-size: 18px;
    line-height: 1.7;
}

.brand-line {
    width: 55px;
    height: 4px;

    margin: 30px auto;

    border-radius: 20px;

    background: #0d9488;
}

.slogan {
    color: #0b1f3a;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 2px;
}

.slogan span {
    margin: 0 8px;

    color: #0d9488;
}

/* FOOTER */

footer {
    margin-top: auto;
    padding-top: 70px;

    color: #94a3b8;

    font-size: 13px;
}

/* MOBILE */

@media (max-width: 600px) {

    body {
        padding: 20px;
    }

    .coming-soon {
        min-height: 90vh;
    }

    .brand {
        margin-bottom: 55px;
    }

    .brand-description {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .description {
        font-size: 16px;
    }

    .slogan {
        font-size: 12px;
        letter-spacing: 1px;
    }
}