:root {
  --bg: #05070c;
  --bg-blue: #0a1220;
  --cyan: #5ce8ff;
  --amber: #ffb000;
  --phosphor: #d8f7ff;
  --mute: #6f8894;
  --font: "Oxanium", "Segoe UI", sans-serif;
  --font-ascii: "Share Tech Mono", ui-monospace, "Cascadia Mono", "Consolas",
    monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: var(--phosphor);
  font-family: var(--font);
}

body {
  overflow-x: hidden;
}

.film-grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.stage-wrap {
  position: relative;
  height: 100vh;
  height: 100dvh;
  background: #000;
}

#stage {
  display: block;
  width: 100%;
  height: 100%;
  cursor: default;
}

.fallback {
  display: none;
  place-items: center;
  min-height: 100vh;
  padding: 4rem 1.25rem;
  background: var(--bg);
  text-align: center;
}

html.no-webgl .fallback {
  display: grid;
}

html.no-webgl #stage {
  display: none;
}

.ascii {
  margin: 0;
  font-family: var(--font-ascii);
  font-size: clamp(5px, 1.05vw + 3.2px, 12px);
  line-height: 1.05;
  color: var(--phosphor);
  text-shadow: 0 0 18px rgba(92, 232, 255, 0.28);
}

.ascii-mobile {
  display: none;
  font-size: clamp(11px, 4.2vw, 16px);
}

.word-studio {
  margin: 1.15rem 0 0;
  font-weight: 600;
  letter-spacing: 0.72em;
  text-indent: 0.72em;
  color: var(--cyan);
}

.blurb {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 4.5rem 1.25rem 5.5rem;
  background:
    radial-gradient(120% 80% at 50% 0%, var(--bg-blue) 0%, var(--bg) 70%);
  text-align: center;
}

.mail {
  color: var(--cyan);
  text-decoration: none;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: 0 0 8px rgba(92, 232, 255, 0.4);
  border-bottom: 1px solid rgba(92, 232, 255, 0.35);
}

.mail:hover,
.mail:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
}

@media (max-width: 720px) {
  .ascii-desktop {
    display: none;
  }

  .ascii-mobile {
    display: block;
  }

  .word-studio {
    letter-spacing: 0.48em;
    text-indent: 0.48em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
