/* SnapCut status pages — standalone, no build step required */

.sc-status-page {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 5rem);
    padding: 3rem 1.25rem 4rem;
    overflow: hidden;
    isolation: isolate;
}

.sc-status-page__backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sc-status-page__grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, black 20%, transparent 78%);
}

.sc-status-page__orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(72px);
    animation: sc-status-float 10s ease-in-out infinite;
}

.sc-status-page__orb--one {
    top: 8%;
    left: -4%;
    width: 22rem;
    height: 22rem;
    animation-delay: 0s;
}

.sc-status-page__orb--two {
    right: -5%;
    bottom: 8%;
    width: 26rem;
    height: 26rem;
    animation-delay: -3s;
}

.sc-status-page__orb--three {
    top: 38%;
    left: 50%;
    width: 16rem;
    height: 16rem;
    transform: translateX(-50%);
    animation-delay: -6s;
}

.sc-status-page--coming-soon .sc-status-page__orb--one { background: #c4b5fd; opacity: 0.75; }
.sc-status-page--coming-soon .sc-status-page__orb--two { background: #f0abfc; opacity: 0.65; }
.sc-status-page--coming-soon .sc-status-page__orb--three { background: #fde68a; opacity: 0.55; }

.sc-status-page--maintenance .sc-status-page__orb--one { background: #fcd34d; opacity: 0.75; }
.sc-status-page--maintenance .sc-status-page__orb--two { background: #fdba74; opacity: 0.65; }
.sc-status-page--maintenance .sc-status-page__orb--three { background: #fde68a; opacity: 0.55; }

.sc-status-page--not-found .sc-status-page__orb--one { background: #cbd5e1; opacity: 0.75; }
.sc-status-page--not-found .sc-status-page__orb--two { background: #c7d2fe; opacity: 0.65; }
.sc-status-page--not-found .sc-status-page__orb--three { background: #ddd6fe; opacity: 0.55; }

.sc-status-page__card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 32rem;
    padding: 2.75rem 2rem 2.5rem;
    text-align: center;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 24px 80px -24px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.sc-status-page__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    margin: 0 auto 1.5rem;
    border-radius: 1.15rem;
    color: #fff;
    box-shadow: 0 14px 34px -12px rgba(15, 23, 42, 0.35);
}

.sc-status-page__icon-wrap svg {
    width: 2rem;
    height: 2rem;
}

.sc-status-page__icon--coming-soon {
    background: linear-gradient(135deg, #7c3aed 0%, #d946ef 52%, #f59e0b 100%);
}

.sc-status-page__icon--maintenance {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 52%, #eab308 100%);
}

.sc-status-page__icon--not-found {
    background: linear-gradient(135deg, #334155 0%, #4f46e5 52%, #7c3aed 100%);
}

.sc-status-page__code {
    margin: 0 0 0.75rem;
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(15, 23, 42, 0.88);
}

.sc-status-page__pill {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sc-status-page__pill--coming-soon { background: #ede9fe; color: #6d28d9; }
.sc-status-page__pill--maintenance { background: #fef3c7; color: #b45309; }
.sc-status-page__pill--not-found { background: #f1f5f9; color: #475569; }

.sc-status-page__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.sc-status-page__description {
    max-width: 26rem;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

.sc-status-page__actions {
    display: flex;
    justify-content: center;
}

.sc-status-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 12rem;
    padding: 0.85rem 1.35rem;
    border-radius: 0.9rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 14px 30px -14px rgba(15, 23, 42, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sc-status-page__btn svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.sc-status-page__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -14px rgba(15, 23, 42, 0.5);
    filter: brightness(1.03);
}

.sc-status-page__btn--coming-soon {
    background: linear-gradient(135deg, #7c3aed 0%, #c026d3 100%);
}

.sc-status-page__btn--maintenance {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
}

.sc-status-page__btn--not-found {
    background: linear-gradient(135deg, #1e293b 0%, #4338ca 100%);
}

@keyframes sc-status-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-14px) scale(1.04); }
}

@media (max-width: 640px) {
    .sc-status-page {
        min-height: calc(100vh - 4.5rem);
        padding-top: 2rem;
    }

    .sc-status-page__card {
        padding: 2rem 1.35rem 1.75rem;
        border-radius: 1.35rem;
    }
}
