/*
Theme Name: UIH Coming Soon
Description: Minimal public placeholder for the UIH website while it is being developed.
Version: 1.0.0
Author: UIH
Text Domain: uih-coming-soon
*/

:root {
    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f3f7fb;
    color: #102c46;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    overflow: hidden;
}

.uih-coming-soon {
    position: relative;
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 32px;
    isolation: isolate;
}

.uih-coming-soon::before,
.uih-coming-soon::after {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    content: "";
    filter: blur(2px);
}

.uih-coming-soon::before {
    top: -18vw;
    right: -12vw;
    width: 48vw;
    height: 48vw;
    background: rgba(31, 118, 170, 0.15);
}

.uih-coming-soon::after {
    bottom: -24vw;
    left: -14vw;
    width: 54vw;
    height: 54vw;
    background: rgba(8, 47, 78, 0.09);
}

.uih-coming-soon__card {
    width: min(720px, 100%);
    padding: clamp(38px, 7vw, 76px);
    border: 1px solid rgba(16, 44, 70, 0.11);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 28px 80px rgba(16, 44, 70, 0.12);
    text-align: center;
    backdrop-filter: blur(14px);
}

.uih-coming-soon__mark {
    display: inline-grid;
    width: 72px;
    height: 72px;
    margin-bottom: 30px;
    border-radius: 20px;
    place-items: center;
    background: #102c46;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.uih-coming-soon h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.uih-coming-soon p {
    max-width: 520px;
    margin: 24px auto 0;
    color: #587083;
    font-size: clamp(17px, 2.5vw, 21px);
    line-height: 1.6;
}

.uih-coming-soon__line {
    display: block;
    width: 64px;
    height: 3px;
    margin: 32px auto 0;
    border-radius: 999px;
    background: #2593c8;
}
