:root {
  color-scheme: light;
  --page-bg: #ffffff;
  --viewport-height: 100dvh;
}

* {
  box-sizing: border-box;
}

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

.landing,
.landing__stage,
.landing__click-catcher {
  position: fixed;
  inset: 0;
  display: block;
  width: 100vw;
  height: var(--viewport-height);
}

.landing,
.landing__stage {
  background: var(--page-bg);
}

.landing__stage {
  pointer-events: none;
  user-select: none;
}

.landing__click-catcher {
  z-index: 10;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.landing[data-mode="animata"] .landing__click-catcher {
  display: none;
  pointer-events: none;
}

.landing__viewport,
.landing__animata-frame {
  display: block;
  width: 100vw;
  height: var(--viewport-height);
}

.landing__viewport {
  overflow: visible;
}

.landing__animata-frame {
  border: 0;
  background: var(--page-bg);
  pointer-events: auto;
}
