:root {
    --bg: rgb(248, 249, 251);
    --bg-grad: radial-gradient(circle at 50% 0%, rgb(255, 255, 255) 0%, rgb(240, 243, 248) 60%);
    --surface: rgb(255, 255, 255);
    --border: rgba(15, 23, 42, 0.08);
    --text: rgb(17, 24, 39);
    --text-soft: rgb(71, 85, 105);
    --text-muted: rgb(120, 132, 152);
    --accent: rgb(37, 99, 235);
    --status: rgb(194, 65, 12);
    --status-bg: rgba(234, 88, 12, 0.10);
    --status-ring: rgba(234, 88, 12, 0.18);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: var(--bg);
    background-image: var(--bg-grad);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
}

.card {
    width: 100%;
    max-width: 520px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 40px 36px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 10px;
    background: var(--status-bg);
    border-radius: 999px;
    margin-bottom: 28px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--status);
    box-shadow: 0 0 0 4px var(--status-ring);
}

.status-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--status);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 0 0 14px;
    line-height: 1.25;
}

.lead {
    font-size: 16px;
    color: var(--text-soft);
    margin: 0 auto 36px;
    max-width: 380px;
}

.contact {
    padding: 22px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.025);
    margin-bottom: 28px;
}

.contact-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 8px;
    font-weight: 600;
}

.contact-mail {
    color: var(--accent);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    word-break: break-all;
}

.contact-mail:hover {
    text-decoration: underline;
}

.foot {
    margin-top: 8px;
}

.foot p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 0.02em;
}

@media (max-width: 480px) {
    .card {
        padding: 36px 24px 28px;
        border-radius: 14px;
    }

    .title {
        font-size: 24px;
    }

    .lead {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .contact {
        padding: 18px 16px;
    }

    .contact-mail {
        font-size: 16px;
    }
}
