:root {
  --pedigree-blue: #0046b8;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--pedigree-blue);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
}

iframe,
video {
  border: 0;
}

.landing-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(0px, 1.2vmin, 18px);
  overflow: hidden;
}

.landing-stage {
  position: relative;
  width: min(100%, 1920px, calc((100svh - clamp(0px, 1.2vmin, 18px) * 2) * 16 / 9));
  aspect-ratio: 16 / 9;
  isolation: isolate;
}

.landing-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.video-frame {
  position: absolute;
  left: 7.82%;
  top: 31.39%;
  width: 46.82%;
  aspect-ratio: 16 / 9;
  z-index: 1;
  overflow: hidden;
  background: #000000;
  box-shadow: none;
}

.demo-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  outline: 0;
  background: #000000;
}



@media (width <= 700px) {
  .landing-shell {
    min-height: 100svh;
    padding: 0;
  }

  .landing-stage {
    width: min(100vw, calc(100svh * 16 / 9));
    min-width: 320px;
  }

}
