:root {
    --page-sky-top: #8fd7ff;
    --page-sky-bottom: #fef6d8;
    --page-sea: #1cb5c9;
    --page-coral: #ff856d;
    --page-sun: #ffd666;
    --page-leaf: #7bd389;
    --text-strong: #144763;
    --text-soft: rgba(20, 71, 99, 0.78);
    --card-surface: rgba(255, 255, 255, 0.7);
    --card-border: rgba(255, 255, 255, 0.55);
    --card-shadow: 0 28px 60px rgba(20, 71, 99, 0.16);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body.coming-soon-body {
    font-family: "Nunito", "Trebuchet MS", sans-serif;
    color: var(--text-strong);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 214, 102, 0.86), transparent 22%),
        radial-gradient(circle at 82% 22%, rgba(123, 211, 137, 0.82), transparent 20%),
        radial-gradient(circle at 50% 78%, rgba(28, 181, 201, 0.24), transparent 30%),
        linear-gradient(180deg, var(--page-sky-top) 0%, #d2f2ff 34%, var(--page-sky-bottom) 100%);
    overflow: hidden;
}

.coming-soon {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    display: grid;
    place-items: center;
    padding: clamp(0.85rem, 2.2vh, 1.5rem) clamp(1rem, 3vw, 2rem);
    isolation: isolate;
    overflow: hidden;
}

.coming-soon::before,
.coming-soon::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    pointer-events: none;
}

.coming-soon::before {
    width: min(34vw, 28rem);
    height: min(34vw, 28rem);
    top: 8%;
    left: max(-8rem, -6vw);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.12));
    opacity: 0.8;
}

.coming-soon::after {
    width: min(26vw, 22rem);
    height: min(26vw, 22rem);
    right: max(-5rem, -4vw);
    bottom: 10%;
    background: linear-gradient(135deg, rgba(255, 133, 109, 0.28), rgba(255, 214, 102, 0.1));
    opacity: 0.78;
}

.coming-soon__breeze,
.coming-soon__breeze::before,
.coming-soon__breeze::after {
    position: absolute;
    left: 50%;
    bottom: -6rem;
    width: min(96vw, 84rem);
    height: min(28vw, 16rem);
    transform: translateX(calc(-50% + var(--drift-x, 0px)));
    border-radius: 50% 50% 0 0;
    pointer-events: none;
}

.coming-soon__breeze {
    background: linear-gradient(180deg, rgba(28, 181, 201, 0.18), rgba(28, 181, 201, 0.34));
    opacity: 0.9;
}

.coming-soon__breeze::before,
.coming-soon__breeze::after {
    content: "";
}

.coming-soon__breeze::before {
    width: min(90vw, 74rem);
    height: min(20vw, 12rem);
    left: 52%;
    bottom: 3.5rem;
    background: rgba(255, 255, 255, 0.24);
}

.coming-soon__breeze::after {
    width: min(74vw, 58rem);
    height: min(16vw, 9rem);
    left: 48%;
    bottom: 7rem;
    background: rgba(255, 255, 255, 0.14);
}

.coming-soon__card {
    position: relative;
    width: min(100%, 40rem);
    max-height: calc(100dvh - 2rem);
    padding: clamp(1.5rem, 3.5vh, 2.4rem) clamp(1.4rem, 4vw, 2.6rem) clamp(1.5rem, 3.5vh, 2.2rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), var(--card-surface));
    border: 1px solid var(--card-border);
    border-radius: 2rem;
    box-shadow: var(--card-shadow);
    text-align: center;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(20px) scale(0.98);
    opacity: 0;
    transition: transform 700ms ease, opacity 700ms ease;
}

body.is-ready .coming-soon__card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.coming-soon__card::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    pointer-events: none;
}

.coming-soon__logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(9.5rem, 27vw, 15rem);
    aspect-ratio: 1;
    margin: 0 auto 1.35rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66));
    box-shadow: 0 22px 40px rgba(20, 71, 99, 0.14);
}

.coming-soon__logo {
    display: block;
    width: min(100%, 12.5rem);
    max-width: 100%;
    height: auto;
}

.coming-soon__title {
    margin: 0;
    font-family: "Baloo 2", "Trebuchet MS", sans-serif;
    font-size: clamp(2.25rem, 4.8vw, 4rem);
    line-height: 1;
    letter-spacing: 0.01em;
}

.coming-soon__subtitle {
    margin: 0.8rem auto 0;
    max-width: 30rem;
    font-size: clamp(1rem, 1.9vw, 1.22rem);
    line-height: 1.45;
    color: var(--text-soft);
}

.coming-soon__description {
    margin: 0.95rem auto 0;
    max-width: 31rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(20, 71, 99, 0.84);
}

.coming-soon__company {
    margin: 1.4rem 0 0;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #0d5f9d;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38);
}

@media (max-width: 767.98px) {
    .coming-soon {
        padding: 0.9rem;
    }

    .coming-soon__card {
        max-height: calc(100dvh - 1.8rem);
        padding: 1.25rem 1.15rem 1.4rem;
        border-radius: 1.6rem;
    }

    .coming-soon__logo-wrap {
        width: min(56vw, 12rem);
        margin-bottom: 1rem;
    }

    .coming-soon__subtitle {
        max-width: 100%;
    }

    .coming-soon__description {
        max-width: 100%;
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .coming-soon__company {
        margin-top: 1rem;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .coming-soon__card {
        transition: none;
        transform: none;
        opacity: 1;
    }

    .coming-soon__breeze,
    .coming-soon::before,
    .coming-soon::after {
        transform: none;
    }
}