@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&display=swap");

:root {
  color-scheme: dark;
  --bg: #020403;
  --text: #c9dfcf;
  --muted: #6f8978;
  --green: #64f59a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Mono", "IBM Plex Sans Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.boot {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.boot.is-hidden {
  opacity: 0;
}

noscript {
  display: block;
  padding: 16px;
}

a { color: var(--green); }
