.basalto-LP {
  background-color: #0c0c0a;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.stage {
  position: relative;
  width: min(95.31vw, calc((100vh - 8.48vh) * 1.6));
  aspect-ratio: 16 / 9;
  border-radius: clamp(8px, 1.25vw, 20px);
  overflow: hidden;
  background: linear-gradient(114deg, #000 0%, #31302d 100%);
}

.stage .bg,
.stage .grain,
.stage .overlay {
  position: absolute;
  inset: 0;
}

.stage .bg img,
.stage .grain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stage .bg img {
  filter: brightness(0.65);
}

.stage .grain {
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.overlay--top {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 35%
  );
}

.overlay--bottom {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 30%
  );
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(180px, 19vw, 360px);
  height: auto;
}

.footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(12px, 4vh, 40px);
  padding: 0 clamp(16px, 18.75%, 360px);
  user-select: text;
  -webkit-user-select: text;
}

.footer__rule {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 0 clamp(8px, 1.5vh, 16px);
}

.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 3vw, 48px);
  font-family: "Sora", Helvetica, sans-serif;
  color: #fff;
  font-weight: 300;
  font-size: clamp(9px, 0.78vw, 14px);
  line-height: 1.4;
}

.footer__row p,
.footer__row a {
  margin: 0;
  color: #fff;
  white-space: nowrap;
}

.footer__copy {
  text-align: right;
}

.footer__brand {
  font-weight: 700;
  margin-left: 0.4em;
}

@media (max-width: 768px) {
  .basalto-LP {
    padding: 16px;
  }

  .stage {
    width: min(100%, calc((100svh - 32px) * 9 / 16));
    aspect-ratio: 9 / 16;
  }

  .logo {
    width: clamp(140px, 50vw, 240px);
  }

  .footer {
    padding: 0 20px;
  }

  .footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    text-align: left;
  }

  .footer__row p,
  .footer__row a {
    white-space: normal;
  }

  .footer__copy {
    text-align: left;
  }
}
