* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #f4f6f8;
    --text: #111827;
    --text-secondary: #667085;
    --accent: #2563eb;
    --accent-light: #eff6ff;
    --border: #dce2e8;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    background: var(--background);
    color: var(--text);
}

.container {
    width: 100%;
    max-width: 850px;
}

.status {
    display: inline-flex;
    align-items: center;
    margin-bottom: 32px;
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #ffffff;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 14px;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.065em;
    color: var(--text);
}

.role {
    margin-bottom: 22px;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--text-secondary);
}

.role span {
    color: var(--accent);
}

.stack {
    max-width: 700px;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: var(--accent);
}

.line {
    width: 100%;
    height: 1px;
    margin: 36px 0 22px;
    background: var(--border);
}

.message {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    body {
        align-items: flex-start;
        padding: 20vh 24px 40px;
    }
    h1 {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
    }
    .role {
        line-height: 1.5;
    }
    .stack {
        line-height: 2;
    }
}