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

body {
  font-family: var(--techno);
  background: var(--ink);
  color: var(--glow);
  overflow: hidden;
}

.landing {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
}

.landing__title {
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: lowercase;
  color: var(--glow);
  text-shadow:
    0 0 20px rgba(158, 200, 208, 0.5),
    0 0 60px rgba(106, 152, 160, 0.25);
  filter: blur(0.3px);
}

.landing__link {
  position: relative;
  z-index: 2;
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(158, 200, 208, 0.55);
  padding: 0.75rem 1.25rem;
  padding-left: calc(1.25rem + 0.55em);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.landing__link:hover {
  color: var(--glow);
  text-shadow: 0 0 24px rgba(200, 228, 234, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .landing__title,
  .landing__link {
    transition: none;
  }
}
