html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  background: #0d2229;
}

body {
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.home-page {
  position: relative;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background: #0d2229;
}

.home-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.home-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4, 16, 20, 0.26), transparent 28%),
    linear-gradient(to top, rgba(4, 16, 20, 0.68), transparent 30%);
  pointer-events: none;
}

.home-nav {
  position: absolute;
  top: 22px;
  right: clamp(18px, 4vw, 54px);
  z-index: 5;
  display: flex;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(4, 20, 25, 0.42);
  backdrop-filter: blur(10px);
}

.home-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-nav a:hover,
.home-nav a:focus-visible {
  background: rgba(255,255,255,0.13);
  color: #fff;
  outline: none;
}

.home-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 20px 18px 22px;
  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.75);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-aspect-ratio: 4/5) {
  .home-image {
    object-fit: contain;
  }

  .home-nav {
    top: 14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: calc(100vw - 24px);
  }

  .home-nav a {
    padding: 8px 10px;
    font-size: 0.7rem;
  }
}
