:root {
  color-scheme: dark;
  --results-blue: #073b82;
  --results-green: #61c83f;
  --results-white: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--results-blue);
  font-family: Arial, Helvetica, sans-serif;
}

.site-preview {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--results-blue);
}

.reference-screen {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100vh;
  object-fit: cover;
  object-position: top center;
}

.talk-to-us-link {
  position: absolute;
  top: 3.5%;
  right: 9.4%;
  display: flex;
  width: clamp(132px, 8.3vw, 160px);
  aspect-ratio: 1.48;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--results-white);
  background: rgba(0, 70, 176, .92);
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.talk-to-us-link:hover,
.talk-to-us-link:focus-visible {
  background: var(--results-green);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .75), 0 12px 30px rgba(0, 0, 0, .22);
  outline: none;
  transform: translateY(-2px);
}

.talk-to-us-link:focus-visible {
  outline: 3px solid var(--results-white);
  outline-offset: 4px;
}

.preview-note {
  position: absolute;
  right: 1rem;
  bottom: .75rem;
  margin: 0;
  padding: .35rem .6rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, .85);
  background: rgba(0, 0, 0, .35);
  font-size: .72rem;
  letter-spacing: .01em;
}

@media (max-width: 760px) {
  .reference-screen {
    width: auto;
    min-width: 760px;
    max-width: none;
    min-height: 100vh;
    transform: translateX(calc((100vw - 760px) / 2));
    transform-origin: top center;
  }

  .talk-to-us-link {
    top: 2.9%;
    right: 4.5%;
    width: 118px;
    font-size: 15px;
  }

  .preview-note {
    left: .75rem;
    right: .75rem;
    text-align: center;
  }
}
