.page {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.page-overlay {
  position: absolute;
  inset: 0;
  background: #664489;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.35;
  animation: page-overlay-flash 1s linear infinite;
}

@keyframes page-overlay-flash {

  0%,
  78% {
    opacity: 0;
  }

  85% {
    opacity: 0.35;
  }

  98% {
    opacity: 0.35;
  }

  100% {
    opacity: 0;
  }
}

.heroine {
  flex: 1;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  position: fixed;
  text-align: center;
  bottom: 0px;
  left: 0px;
}

a.null-ahref,
a.null-ahref:link,
a.null-ahref:visited,
a.null-ahref:hover,
a.null-ahref:active,
a.null-ahref:focus,
a.null-ahref:focus-visible {
  all: unset;
  display: inline;
  color: inherit;
  text-decoration: none;
  cursor: inherit;
}

h1 a.null-ahref {
  display: inline-block;
  white-space: pre;
}

.hero-title-char {
  opacity: 0;
}

.hero-title-char.is-visible {
  opacity: 1;
}

.hero-title-cursor {
  display: inline-block;
  opacity: 0;
  overflow: visible;
  pointer-events: none;
}

.hero-title-cursor.is-visible {
  animation: hero-title-cursor-blink 1s steps(1, end) infinite;
}

@keyframes hero-title-cursor-blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.image-wrap {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  line-height: 0;
}

.heroine-image {
  display: block;
  width: min(92vw, 560px, 62vh);
  height: auto;
  aspect-ratio: 1 / 1;
  max-height: none;
  z-index: 2;
}

.heroine-image-mask {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("ochra_reddish_mask.png");
  background-size: 100%;
  mix-blend-mode: color-dodge;
  opacity: 0.5;
  transform: translate3d(0, 0, 0) scale(1);
  animation: heroine-image-mask-pulse 125ms linear infinite alternate;
  will-change: opacity, transform;
}

.heroine-image-mask-overlay {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.heroine-mask-scan-line {
  position: absolute;
  top: 62%;
  left: 0%;
  width: calc(0.7 * min(92vw, 560px, 62vh));
  height: 15px;
  background: var(--flare-deep);
  transform-origin: left center;
  transform: translate3d(0, 0, 0) rotate(-56deg) scaleX(0.7142857);
  animation: heroine-mask-scan-line 125ms linear infinite;
  will-change: transform, opacity;
  opacity: 0.35;
  z-index: 2;
  mix-blend-mode: color-dodge;
}

.heroine-mask-scan-line-2 {
  position: absolute;
  top: 55%;
  right: 20%;
  width: calc(0.5 * min(92vw, 560px, 62vh));
  height: 25px;
  background: var(--flare-ember);
  transform-origin: right center;
  transform: translate3d(0, 0, 0) rotate(56deg) scaleX(0.6);
  animation-delay: 35ms;
  animation: heroine-mask-scan-line-2 75ms ease-in-out infinite;
  will-change: transform, opacity;
  opacity: 0.25;
  z-index: 2;
  mix-blend-mode: color-dodge;
}

@keyframes heroine-mask-scan-line {
  from {
    transform: translate3d(0, 0, 0) rotate(-56deg) scaleX(0.7142857);
  }

  to {
    transform: translate3d(65%, 85%, 0) rotate(-56deg) scaleX(1);
  }
}

@keyframes heroine-mask-scan-line-2 {
  from {
    transform: translate3d(0, 0, 0) rotate(56deg) scaleX(0.6);
  }

  to {
    transform: translate3d(-85%, 20%, 0) rotate(56deg) scaleX(1);
  }
}

@keyframes heroine-image-mask-pulse {
  0% {
    opacity: 0.5;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 0.85;
    transform: translate3d(0.3px, 0.3px, 0) scale(0.99);
  }

  75% {
    opacity: 0.5;
    transform: translate3d(0.5px, 0, 0) scale(0.99);
  }

  80% {
    opacity: 0.35;
    transform: translate3d(0.2px, 0.5px, 0) scale(0.99);
  }

  100% {
    opacity: 0.65;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.image-gradient-left {
  position: absolute;
  right: 100%;
  bottom: 0;
  height: calc(100% * 114.0 / 1024.0);
  width: max(0px, calc((100vw - 100%) / 2));
  background-image: url("landingpageimage2_bottom_left_25x114.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: right bottom;
  pointer-events: none;
  z-index: 1;
}

.image-gradient-right {
  position: absolute;
  left: 100%;
  bottom: 0;
  height: calc(100% * 114.0 / 1024.0);
  width: max(0px, calc((100vw - 100%) / 2));
  background-image: url("landingpageimage2_bottom_right_25x114.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: left bottom;
  pointer-events: none;
  z-index: 1;
}
