/* Minimal, benchmark-style landing: clean, centered word */
:root {
  --bg: #ffffff;
  --fg: #111111;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

main {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 10rem);
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
}

/* Optional subtle focus/selection polish */
:focus-visible { outline: 2px solid #999; outline-offset: 4px; }
::selection { background: #111; color: #fff; }
