:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    color: #ededec;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    text-align: center;
    padding: 1.5rem;
}
h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}
p {
    color: #a1a09a;
    font-size: 1.1rem;
    margin: 0;
}
