/* Home provisória da raiz (infra/root/index.html). Arquivo linkado, nunca
   inline: a CSP da aplicação não tem 'unsafe-inline'. Fonte do sistema, sem
   Google Fonts. */
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 24px;
  background: #000;
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

main {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.brand {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

h1 {
  margin-top: 16px;
  font-size: clamp(32px, 8vw, 56px);
  line-height: 1.1;
}

.lead {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.6;
}
