html {
  height: 100%;
}

body.home,
body.error404 {
  margin: 0;
  height: 100%;
  background: #000;
  font-family: "neue-haas-grotesk-display", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  overflow: hidden;
}

body.home h1,
body.home h2,
body.home h3,
body.home h4,
body.home h5,
body.home h6,
body.home p,
body.error404 h1,
body.error404 h2,
body.error404 h3,
body.error404 h4,
body.error404 h5,
body.error404 h6,
body.error404 p {
  font-weight: 400;
}

#bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

#vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

#content-wrapper {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  justify-content: center;
}

#content {
  width: 100%;
  max-width: 1920px;
  padding: clamp(24px, 4vw, 70px);
  padding-bottom: clamp(12px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.logo {
  /* opacity: 0.9; */
}

.hero {
  max-width: 850px;
}

.hero h5 {
  margin: 0 0 14px;
  font-size: 2rem;
  color: #fff;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 1.05;
  text-shadow: 0 0 40px rgba(180, 100, 255, 0.6);
}

.hero p {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.3;
  max-width: 750px;
}

.footer {
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .footer p {
    margin: 0;
  }
}

.v-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(90, 67, 93, 0.65), transparent);
}

.v-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 28%;
  background: linear-gradient(to right, rgba(90, 67, 93, 0.65), transparent);
}
