/* Base neutra. Punto de partida — se va construyendo encima. */
:root {
    --bg: #0d0d0f;
    --fg: #f2f2f2;
    --muted: #8a8a90;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
    background: var(--bg);
    color: var(--fg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.stage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.wordmark {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.tagline {
    color: var(--muted);
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    letter-spacing: 0.02em;
}
