/* CARV coming-soon page: a single centered headline on a clean white
   background. Deliberately minimal so the public URL is live but does
   not pre-commit any messaging until the full page is ready. */

:root {
    --green: #76B900;
    --gray-5: #222222;
    --font-serif: "Times New Roman", Times, "Liberation Serif", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    background: #ffffff;
    color: var(--gray-5);
    font-family: var(--font-serif);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
main {
    padding: 24px;
}
h1 {
    font-weight: 700;
    font-size: clamp(38px, 7vw, 72px);
    margin: 0;
    color: var(--green);
    letter-spacing: -0.01em;
}
