.coming-soon-page {
    min-height: 70vh;
    background: #f6f9fd;
}

.coming-soon-hero {
    position: relative;
    display: flex;
    min-height: 70vh;
    align-items: center;
    overflow: hidden;
    padding: 120px 24px;
    background: linear-gradient(145deg, #f8fbff 0%, #eef5fc 55%, #e6f0fb 100%);
}

.coming-soon-grid {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(1, 118, 211, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 118, 211, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.coming-soon-container {
    position: relative;
    z-index: 1;
    width: min(820px, 100%);
    margin: 0 auto;
    text-align: center;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid rgba(1, 118, 211, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.coming-soon-container h1 {
    margin: 0;
    color: var(--dark-blue);
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.08;
}

.coming-soon-copy {
    max-width: 680px;
    margin: 24px auto 0;
    color: var(--text-secondary, #52647a);
    font-size: 18px;
    line-height: 1.75;
}

.coming-soon-copy > :last-child { margin-bottom: 0; }

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

.coming-soon-actions a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.coming-soon-primary {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(1, 118, 211, 0.22);
}

.coming-soon-secondary {
    border: 1px solid rgba(3, 45, 96, 0.16);
    background: #fff;
    color: var(--dark-blue);
}

@media (max-width: 640px) {
    .coming-soon-hero { min-height: 62vh; padding: 88px 20px; }
    .coming-soon-copy { font-size: 16px; }
    .coming-soon-actions { flex-direction: column; }
    .coming-soon-actions a { width: 100%; }
}
