:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: #000;
  color: #fff;
}

.page-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  overflow: visible;
}

.page-header-frame {
  position: relative;
  width: min(100vw, 1672px);
  aspect-ratio: 1672 / 625;
  overflow: hidden;
}

.page-header nav {
  width: min(100vw, 980px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4.4vw, 76px);
  position: relative;
  margin-top: clamp(20px, 2.1vw, 36px);
  z-index: 5;
}

.page-header-image {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.page-nav-link {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 4px;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.page-nav-link:hover,
.page-nav-link:focus-visible {
  outline: none;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.85), 0 0 22px rgba(255, 255, 255, 0.45);
}

.page-nav-link.home {
  width: auto;
}

.page-nav-link.about {
  width: auto;
}

.page-nav-link.pricing {
  width: auto;
}

.page-nav-link.contact {
  width: auto;
}

.page-nav-link.testimonials {
  width: auto;
}

.page-nav-link.login {
  width: auto;
}

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