.aral-scroll-stage {
  --aral-scroll-height: 650vh;
  position: relative;
  height: var(--aral-scroll-height);
  min-height: 260vh;
  width: 100%;
  overflow: visible;
  background: #75bfe8;
}

.aral-scroll-scene {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #75bfe8;
  isolation: isolate;
}

.aral-frame-canvas,
.aral-three-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.aral-frame-canvas {
  z-index: 1;
}

.aral-cloud-layer-root {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}

.aral-cloud-sprite {
  position: absolute;
  width: 34vw;
  min-width: 320px;
  max-width: 1300px;
  height: auto;
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
  pointer-events: none;
  user-select: none;
}

.aral-cloud-layer-root--back {
  z-index: 3;
}

.aral-cloud-layer-root--front {
  z-index: 5;
}

.aral-three-canvas {
  z-index: 4;
  pointer-events: none;
  opacity: 1;
}

.aral-text-layer-root {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.aral-text-block {
  position: absolute;
  color: #fff;
  font-family: "Inter", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 18px rgba(0, 24, 64, 0.28);
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 120ms linear, transform 120ms linear;
  will-change: opacity, transform;
}

.aral-text-block,
.aral-text-block p,
.aral-text-block span {
  font-family: "Inter", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

.aral-text-block p {
  margin: 0;
}

.aral-text-block strong,
.aral-text-block b {
  display: inline-block;
  margin-bottom: 0.35em;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.aral-scroll-loading {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 8;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(0,30,70,.25);
  font: 13px/1.3 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  pointer-events: none;
}

.aral-scroll-stage.is-loaded .aral-scroll-loading {
  display: none;
}

.aral-scroll-stage.has-three-error .aral-three-canvas {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .aral-scroll-stage {
    height: 120vh;
  }
  .aral-text-block {
    transition: none;
  }
}


.aral-scroll-stage.bp-presentation .aral-text-block {
  max-width: calc(100vw - 48px);
}
