/* Splash – centered & fixed (no scroll) */
:root { --bg: #fff; --fg: #000; }

html, body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--fg);
}

body {
  overflow: hidden; /* stop vertical scroll */
  font-family: "General Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.splash {
  min-height: 100vh;            /* full viewport */
  display: flex;
  align-items: center;          /* vertical center */
  justify-content: center;      /* horizontal center */
  padding: 0;
}

.brand {
  font-weight: 800;
  font-size: clamp(2.75rem, 8vw, 7rem); /* responsive size */
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Ghost validator-required card widths (safe to keep) */
.kg-width-wide { max-width: 90rem; margin-inline: auto; }
.kg-width-full { width: 100vw; margin-left: 50%; transform: translateX(-50%); }