*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #f4f6f8;
    color: #172033;
    font-family:
        Figtree,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.page-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 2rem;
}

.welcome-panel {
    width: min(100%, 46rem);
    border: 1px solid #dde3ea;
    border-radius: 0.75rem;
    background: #fff;
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: 0 20px 60px rgba(23, 32, 51, 0.08);
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: #1f7a4d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    color: #101827;
    font-size: clamp(2.25rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
}

.lead {
    max-width: 36rem;
    margin: 1.25rem 0 0;
    color: #526071;
    font-size: 1.05rem;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.status-grid div {
    border: 1px solid #e4e9ef;
    border-radius: 0.5rem;
    padding: 1rem;
    background: #fafbfc;
}

.status-grid span,
.status-grid strong {
    display: block;
}

.status-grid span {
    color: #687586;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-grid strong {
    margin-top: 0.35rem;
    color: #172033;
    font-size: 0.95rem;
}

@media (max-width: 42rem) {
    .page-shell {
        padding: 1rem;
    }

    .welcome-panel {
        border-radius: 0.5rem;
        padding: 1.5rem;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }
}
