:root {
  --white: #f4f1ea;
}

* {
  box-sizing: border-box;
}

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

body {
  display: flex;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
}

.site-wrap {
  position: relative;
  width: min(100vw, 1024px);
  margin: 0 auto;
  background: #050505;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.75);
}

.site-art {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.nav-hotspot {
  position: absolute;
  top: 2.35%;
  height: 4.2%;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 5;
}

.nav-hotspot::after {
  content: "Coming Soon";
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%) translateY(-4px);
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px;
  background: rgba(12,12,12,.96);
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 800;
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: .08em;
  opacity: 0;
  pointer-events: none;
  transition: .18s ease;
  box-shadow: 0 12px 25px rgba(0,0,0,.35);
}

.nav-hotspot:hover::after,
.nav-hotspot:focus::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-technology { left: 48.2%; width: 10.4%; }
.nav-pricing { left: 60.0%; width: 8.3%; }
.nav-memberships { left: 69.8%; width: 13.0%; }
.nav-about { left: 84.3%; width: 7.2%; }
.nav-contact { left: 93.1%; width: 6.4%; }

.signup-hotspot {
  position: absolute;
  left: 21.2%;
  top: 84.95%;
  width: 57.6%;
  height: 3.35%;
  display: grid;
  grid-template-columns: 67.8% 32.2%;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(0,0,0,.45);
  z-index: 4;
}

.signup-hotspot input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 1.6vw;
  color: white;
  background: rgba(0,0,0,.68);
  font-size: clamp(12px, 1.7vw, 20px);
}

.signup-hotspot input::placeholder {
  color: rgba(255,255,255,.62);
}

.signup-hotspot button {
  border: 0;
  color: white;
  background: linear-gradient(180deg, #c8191d, #970d11);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  font-size: clamp(11px, 1.5vw, 18px);
  cursor: pointer;
}

.email-link {
  position: absolute;
  left: 69%;
  top: 94.55%;
  width: 22%;
  height: 2%;
}

#toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(120px);
  z-index: 99;
  padding: 13px 20px;
  background: rgba(10,10,10,.96);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  box-shadow: 0 16px 45px rgba(0,0,0,.45);
  transition: transform .25s ease;
}

#toast.show {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 700px) {
  .site-wrap {
    width: 100vw;
  }
}
