* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at center, rgba(117, 54, 255, 0.18), transparent 42%),
    #020105;
  color: #f3efff;
  font-family: Consolas, "Lucida Console", monospace;
  overflow: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(20px, 4vw, 56px);
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 5px
    );
  opacity: 0.35;
  mix-blend-mode: screen;
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.72) 100%);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.logo {
  display: block;
  width: min(86vw, 1200px);
  height: auto;
  filter: none;
  mask-image: radial-gradient(
	ellipse at center,
	black 45%,
	transparent 90%);
	-webkit-mask-image: radial-gradient(
	ellipse at center,
	black 45%,
	transparent 90%);
}

.links {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 36px);
  flex-wrap: wrap;
  padding-bottom: clamp(8px, 2vw, 24px);
  font-size: clamp(14px, 1.8vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.links a {
  color: #d9ccff;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(119, 64, 255, 0.65);
  opacity: 0.82;
  transition: opacity 160ms ease, text-shadow 160ms ease;
}

.links a:hover,
.links a:focus {
  opacity: 1;
  text-shadow:
    0 0 10px rgba(119, 64, 255, 0.95),
    0 0 24px rgba(119, 64, 255, 0.65);
}

@media (max-width: 640px) {
  body {
    overflow: auto;
  }

  .page {
    grid-template-rows: minmax(68vh, 1fr) auto;
  }

  .links {
    gap: 16px;
  }
}
