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

html,
body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #000;
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage {
  position: relative;
  width: min(100vw, 150vh);
  aspect-ratio: 3 / 2;
  background: #000;
  overflow: hidden;
}

.hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  display: block;
  z-index: 5;
  text-decoration: none;
  background: rgba(255,255,255,0);
}

/* Main CTA: PLEASE CONTACT FOR FULL ACCESS TO SITE */
.access {
  left: 27.5%;
  top: 57.2%;
  width: 45%;
  height: 5.8%;
}

/* Inline email text below CTA */
.email-line {
  left: 34%;
  top: 65.2%;
  width: 32%;
  height: 4%;
}

/* Footer email */
.footer-email {
  left: 11%;
  top: 83.6%;
  width: 17%;
  height: 3.8%;
}

/* Bottom davidellen.com */
.davidellen {
  left: 33%;
  top: 90.2%;
  width: 13%;
  height: 3.8%;
}

/* Bottom catalyst360.world */
.catalyst {
  left: 51.5%;
  top: 90.2%;
  width: 15%;
  height: 3.8%;
}

/* Optional debugging: add .debug to <main> if you need to see click areas. */
.stage.debug .hotspot {
  outline: 1px solid rgba(255, 215, 0, .45);
  background: rgba(255, 215, 0, .08);
}

@media (max-aspect-ratio: 3/2) {
  .stage {
    width: 100vw;
  }
}

@media (min-aspect-ratio: 3/2) {
  .stage {
    height: 100vh;
    width: auto;
  }
}
