:root {
  color-scheme: dark;
  --ink: #f5f1e8;
  --muted: #aaa7b4;
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #08090d;
}

body {
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 70% 20%, rgba(85, 58, 129, .25), transparent 38%),
    radial-gradient(circle at 20% 85%, rgba(26, 107, 116, .18), transparent 42%),
    #08090d;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  background-image: url("/noise.svg");
}

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
}

main {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  width: min(84vw, 900px);
  margin: 0 auto;
  pointer-events: none;
}

.mark {
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  color: #b7b2c9;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .34em;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 9vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .84;
  text-wrap: balance;
}

h1 em {
  color: transparent;
  font-weight: 400;
  -webkit-text-stroke: 1px rgba(245, 241, 232, .62);
}

p {
  margin: clamp(1.8rem, 4vw, 3.2rem) 0 0;
  color: var(--muted);
  font-size: clamp(.86rem, 1.5vw, 1rem);
  letter-spacing: .04em;
}

.hint {
  position: fixed;
  right: 2rem;
  bottom: 1.6rem;
  z-index: 2;
  color: #6d6a78;
  font-size: .64rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 600px) {
  main { width: 86vw; }
  .hint { right: 1.2rem; bottom: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  #field { opacity: .35; }
}
