:root {
    color-scheme: light;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: #172033;
    background: #f3f5f8;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(
            circle at top left,
            #ffffff 0,
            #f3f5f8 48rem
        );
}

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

.placeholder-card {
    width: min(100%, 48rem);
    padding: clamp(1.5rem, 5vw, 3.5rem);
    border: 1px solid #dce2eb;
    border-radius: 1.2rem;
    background: #ffffff;
    box-shadow:
        0 1.5rem 4rem
        rgba(23, 32, 51, 0.08);
}

.eyebrow {
    margin: 0 0 0.7rem;
    color: #59677f;
    font-size: 0.8rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    max-width: 15ch;
    margin: 0;
    font-size: clamp(2rem, 7vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.intro {
    max-width: 42rem;
    margin: 1.5rem 0;
    color: #647087;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
}

.status {
    display: inline-flex;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: #edf1f7;
    color: #3c4b64;
    font-size: 0.82rem;
    font-weight: 750;
}
