* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background-color: #050816;
  color: #f4f7ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.scene__bg {
  position: absolute;
  inset: 0;
  background-color: #050816;
  background-image: url("../images/cloud-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: center center;
  will-change: transform;
  animation: scene-bg-breathe 56s ease-in-out infinite alternate;
}

@keyframes scene-bg-breathe {
  from {
    transform: scale(1) translate3d(-0.8%, -0.5%, 0);
  }

  to {
    transform: scale(1.24) translate3d(0.8%, 0.5%, 0);
  }
}

.scene__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  display: block;
  width: min(94.5vw, 630px);
  height: auto;
  max-height: 81vh;
  object-fit: contain;
}

.brand__tagline {
  margin: 0.75rem 0 0;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 247, 255, 0.72);
}

@media (prefers-reduced-motion: reduce) {
  .scene__canvas {
    display: none;
  }

  .scene__bg {
    animation: none;
    transform: none;
  }
}
