:root {
  --bg: #07080b;
  --text: #e8eaf0;
  --muted: #8a93a5;
  --accent: #6ee7b7;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;
}

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  -webkit-font-smoothing: antialiased;
}

#swarm {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    60% 45% at 50% 50%,
    rgba(7, 8, 11, 0.92) 0%,
    rgba(7, 8, 11, 0.55) 55%,
    transparent 100%
  );
}

main {
  position: relative;
  z-index: 1;
  text-align: center;
}

h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.mark {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(110, 231, 183, 0.13);
}

p {
  margin: 1.1rem 0 0;
  font-size: 0.84rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--muted);
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  #swarm {
    display: none;
  }
}
