@font-face {
  font-family: "Departure Mono";
  src: url("/fonts/DepartureMono-Regular.5b4fed1daa90.woff2") format("woff2");
  font-display: swap;
}

:root {
  --bg: #05080f;
  --fg: #eef1f6;
  --muted: #6b7384;
  --edge: clamp(1.25rem, 3.5vw, 2.75rem);
  color-scheme: dark;
}

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

html,
body {
  height: 100%;
  background: var(--bg);
  overflow: hidden;
}

body {
  color: var(--fg);
  font-family: "Departure Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  -webkit-font-smoothing: none;
  font-smooth: never;
}

#reticle {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: crosshair;
}

.corner {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  animation: boot 0.6s steps(4, end) forwards;
}

.top-left {
  top: var(--edge);
  left: var(--edge);
  animation-delay: 1.3s;
}

.bottom-left {
  bottom: var(--edge);
  left: var(--edge);
  animation-delay: 1.5s;
}

h1 {
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 0.32em;
}

.muted {
  color: var(--muted);
}

@keyframes boot {
  to {
    opacity: 1;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .corner {
    animation: none;
    opacity: 1;
  }
}
