.coming-soon-page {
    overflow: hidden;
    color: #111827;
    background: #fff;
}

.coming-soon-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 110px 0;
    background: radial-gradient(circle at 18% 18%, rgba(0, 210, 255, 0.28), transparent 28%), radial-gradient(circle at 82% 76%, rgba(255, 228, 92, 0.2), transparent 24%), linear-gradient(135deg, #07164d 0%, #0b42a8 55%, #01a3ff 100%);
    color: #fff;
}

.coming-soon-hero::before,
.coming-soon-hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.coming-soon-hero::before {
    width: 440px;
    height: 440px;
    top: -190px;
    right: -100px;
    background: rgba(255, 255, 255, 0.12);
}

.coming-soon-hero::after {
    width: 290px;
    height: 290px;
    bottom: -120px;
    left: 7%;
    background: rgba(255, 255, 255, 0.1);
}

.coming-soon-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.coming-soon-card {
    width: min(100%, 900px);
    padding: 54px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.2);
    text-align: center;
    backdrop-filter: blur(18px);
}

.coming-soon-logo {
    display: inline-flex;
    max-width: 360px;
    margin: 0 auto 28px;
    padding: 22px 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.14);
}

.coming-soon-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.coming-soon-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    color: #8ee8ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.coming-soon-card h1 {
    max-width: 760px;
    margin: 0 auto 20px;
    color: #fff;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 950;
    line-height: 1.08;
}

.coming-soon-card p {
    max-width: 740px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.78;
}

.coming-soon-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.coming-soon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.coming-soon-btn:hover {
    transform: translateY(-2px);
}

.coming-soon-btn--primary {
    background: #fff;
    color: #0b42a8 !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.coming-soon-btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: #fff !important;
}

.coming-soon-btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media screen and (max-width: 768px) {
    .coming-soon-hero {
        min-height: auto;
        padding: 82px 0;
    }

    .coming-soon-card {
        padding: 36px 22px;
        border-radius: 26px;
    }

    .coming-soon-logo {
        max-width: 280px;
        padding: 18px 22px;
    }

    .coming-soon-card p {
        font-size: 16px;
    }
}

@media screen and (max-width: 520px) {
    .coming-soon-actions,
    .coming-soon-btn {
        width: 100%;
    }
}
