/* Agenticize.ai - parking page. Artwork only, nothing else. */
:root{
  --ground:#050a18;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;height:100%}
html{-webkit-text-size-adjust:100%}
body{
  background:var(--ground);
  min-height:100vh;
  min-height:100dvh;
  display:flex;
  align-items:center;
  justify-content:center;
}

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

.stage{
  width:100%;
  max-width:100vw;
  aspect-ratio:1672 / 941;
  max-height:100vh;
  max-height:100dvh;
}
.stage img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  display:block;
}
