@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/SpaceGrotesk.ttf") format("truetype-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/JetBrainsMono.ttf") format("truetype-variations");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #FAFAF7;
  --fg: #111111;
  --muted: #6e6d68;
  --accent: oklch(0.62 0.17 32);
  --sans: "Space Grotesk", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #0B0B0C; --fg: #EDECE6; --muted: #918f89; --accent: oklch(0.78 0.15 75); }
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 56px);
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
.code {
  font-size: clamp(80px, 18vw, 180px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.braket {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.braket .psi {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: 1.3em;
  vertical-align: -0.05em;
  letter-spacing: 0;
  text-transform: none;
}
#privacyTitle {
  opacity: 0;
  transition: opacity .35s ease;
}
#privacyTitle.shown { opacity: 1; }
#privacyTitle span {
  display: inline-block;
  min-width: 1ch;
  text-align: center;
}
.note {
  margin-top: 18px;
  max-width: 42ch;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--muted);
  opacity: 0.85;
}
.note + .note { margin-top: 10px; }
.note a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: color-mix(in oklab, currentColor 40%, transparent);
  text-underline-offset: 2px;
  transition: color .25s ease, text-decoration-color .25s ease;
}
.note a:hover, .note a:focus-visible {
  color: var(--accent);
  text-decoration-color: currentColor;
  outline: none;
}
.home {
  margin-top: 28px;
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  padding-bottom: 2px;
  position: relative;
  transition: color 0.25s ease;
}
.home::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(.2,.7,.1,1);
}
.home:hover, .home:focus-visible { color: var(--accent); }
.home:hover::after, .home:focus-visible::after { transform: scaleX(1); }
.home:focus-visible { outline: none; }
