@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --paper: #000000;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}

.page-shell {
  isolation: isolate;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 32px 5vw 28px;
  position: relative;
}

.page-shell canvas {
  inset: 0;
  position: absolute !important;
  z-index: 0 !important;
}

.hero {
  margin: auto 0;
  padding: 12vh 0;
  position: relative;
  z-index: 2;
}

h1 {
  font-size: clamp(3rem, 7vw, 8.75rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.92;
  margin: 0;
  max-width: 1500px;
}

h1 em {
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}

@media (max-width: 600px) {
  .page-shell {
    padding: 24px 24px 22px;
  }

  .hero {
    padding: 10vh 0;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 6rem);
  }

}
