* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rsd-bg: #050509;
    --rsd-bg-soft: #0d0d14;
    --rsd-red: #ff1744;
    --rsd-red2: #ff5c80;
    --rsd-text: #f5f5f7;
    --rsd-muted: #9ea3b0;
    --rsd-border: rgba(255, 255, 255, 0.12);
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--rsd-bg);
    color: var(--rsd-text);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

.page-container {
    max-width: 600px;
    width: 100%;
    background: var(--rsd-bg-soft);
    border: 1px solid var(--rsd-border);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    box-shadow: 0 0 40px rgba(255, 23, 68, 0.08);
    animation: fadeIn 0.5s ease-out;
}

.page {
    margin-top: 2.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    text-align: left;
    color: var(--rsd-muted);
}

.page__headline {
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--rsd-text);
}

.page__paragraph {
    margin-top: 0.6rem;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 150px;
    margin: 0 auto 1rem;
}

.logo img {
    width: 100%;
}

.logo span {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--rsd-text);
}

.status__pill {
    display: inline-block;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    text-transform: uppercase;
    background: rgba(255, 23, 68, 0.22);
    color: #ffb3c4;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.7rem;
}

.subtitle {
    font-size: 0.95rem;
    color: var(--rsd-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.progress__bar {
    width: 85%;
    height: 6px;
    background: #1b1b21;
    margin: 1.5rem auto;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress__fill {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--rsd-red), var(--rsd-red2));
    animation: loading 3.5s infinite;
}

@keyframes loading {
    0% {
        transform: translateX(-80%);
    }

    100% {
        transform: translateX(150%);
    }
}

.email__box {
    margin-top: 1.8rem;
}

.email__box input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--rsd-border);
    background: #0f0f16;
    border-radius: 6px;
    color: var(--rsd-text);
    font-size: 0.9rem;
}

.email__box button {
    margin-top: 0.6rem;
    width: 100%;
    padding: 0.85rem 1rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rsd-red), var(--rsd-red2));
    color: #050509;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.82rem;
}

.mailto {
    color: var(--rsd-red2);
    text-decoration: none;
}

.footer__note {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--rsd-muted);
}

@media (min-width: 480px) {
    h1 {
        font-size: 1.9rem;
    }
}