:root {
    --bg: #030712;
    --bg-soft: #07111f;
    --card: rgba(8, 18, 34, 0.92);
    --card-border: rgba(59, 130, 246, 0.35);
    --text: #e5f0ff;
    --muted: #94a3b8;
    --blue: #2563eb;
    --blue-light: #38bdf8;
    --blue-dark: #0f172a;
    --danger: #60a5fa;
    --shadow: rgba(37, 99, 235, 0.25);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.28), transparent 34rem),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.18), transparent 30rem),
        linear-gradient(135deg, #020617 0%, #030712 50%, #07111f 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}

.page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.notice-card {
    width: min(100%, 720px);
    position: relative;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(3, 7, 18, 0.96)),
        var(--card);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.45),
        0 0 48px var(--shadow);
    overflow: hidden;
}

.notice-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(56, 189, 248, 0.14),
        transparent 35%,
        rgba(37, 99, 235, 0.12)
    );
}

.notice-card > * {
    position: relative;
    z-index: 1;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.brand-mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.04em;
    background:
        linear-gradient(135deg, var(--blue), var(--blue-light));
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.35);
}

.eyebrow {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-light);
}

.brand-subtitle {
    margin: 0.2rem 0 0;
    color: var(--muted);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: 999px;
    color: #bfdbfe;
    background: rgba(15, 23, 42, 0.78);
    font-size: 0.85rem;
    font-weight: 600;
}

.pulse {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--danger);
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.7);
    animation: pulse 1.8s infinite;
}

h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

p {
    max-width: 58ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.lead {
    color: #dbeafe;
    font-size: 1.15rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.button {
    appearance: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.8rem 1.1rem;
    border-radius: 14px;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:focus-visible {
    outline: 3px solid rgba(56, 189, 248, 0.5);
    outline-offset: 3px;
}

.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), #0ea5e9);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.32);
}

.secondary {
    color: var(--text);
    border: 1px solid rgba(148, 163, 184, 0.32);
    background: rgba(15, 23, 42, 0.78);
}

.secondary:hover {
    border-color: rgba(56, 189, 248, 0.6);
    background: rgba(15, 23, 42, 0.95);
}

.email-fallback {
    margin-top: 1.25rem;
    font-size: 0.95rem;
}

#email-text {
    color: #bfdbfe;
    font-weight: 700;
}

.divider {
    height: 1px;
    margin: 2rem 0 1rem;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.45), transparent);
}

.small {
    font-size: 0.88rem;
    color: #74849a;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.55);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(96, 165, 250, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
    }
}

@media (max-width: 560px) {
    .page {
        padding: 1rem;
    }

    .brand {
        align-items: flex-start;
    }

    .actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }
}