:root {
  --hb-white: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--hb-white);
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.home,
.hero {
  width: 100%;
  height: 100dvh;
  min-height: 100vh;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/*
  The approved artwork is 1536 × 1024 (3:2).
  The stage takes the largest possible 3:2 rectangle that fits entirely
  inside the visible viewport. Nothing is cropped and no page scroll is needed.
*/
.art-stage {
  position: relative;
  width: min(100vw, 150dvh);
  aspect-ratio: 3 / 2;
  max-height: 100dvh;
}

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

/*
  Hotspots correspond to the two large CTA targets printed along the
  bottom of the approved artwork. Percentages scale with the artwork.
*/
.cta-hotspot {
  position: absolute;
  bottom: 0.9%;
  height: 11.6%;
  z-index: 2;
  border-radius: 0.6rem;
}

.cta-hotspot.jobs {
  left: 2.4%;
  width: 37.2%;
}

.cta-hotspot.talent {
  left: 40.8%;
  width: 39.0%;
}

.cta-hotspot:hover,
.cta-hotspot:focus-visible {
  outline: 4px solid rgba(255, 90, 22, 0.85);
  outline-offset: -4px;
}

.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;
}
