/* © 2026 Raúl Vázquez. Landing-only edge legibility treatment. */
.landing .edge-blur--top {
  height: 11rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: linear-gradient(180deg,
    rgba(8, 8, 8, .34) 0%,
    rgba(8, 8, 8, .20) 34%,
    rgba(8, 8, 8, .07) 64%,
    transparent 100%);
}

.landing .edge-blur--bottom {
  height: 9.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: linear-gradient(0deg,
    rgba(8, 8, 8, .34) 0%,
    rgba(8, 8, 8, .20) 36%,
    rgba(8, 8, 8, .07) 66%,
    transparent 100%);
}

@media (max-width: 720px) {
  .landing .edge-blur--top {
    height: 9rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .landing .edge-blur--bottom {
    height: 8rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  /* A little more breathing room from the physical screen edges on mobile. */
  .landing .site-header {
    top: calc(var(--edge-t) + .28rem);
  }

  .landing .language-switcher,
  .landing .social-links,
  .landing .copyright {
    bottom: calc(var(--edge-b) + .28rem);
  }
}
