@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Plaster&display=swap');

:root {
  --page-base: #fbfbfb;
  --ink: #030e1d;
  --sky: #4c6fff;
  --mint: #2fbf9b;
  --sand: #f6f2e8;
  --paper: rgba(255, 255, 255, 0.82);
  --line: rgba(16, 37, 66, 0.12);
  --shadow: 0 24px 80px rgba(16, 37, 66, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  background-color: var(--page-base);
  user-select: none;
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--page-base);
  color: var(--ink);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

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

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  will-change: transform;
  transform: translateZ(0);
}

.splash-shell {
  opacity: 0;
  transition: opacity 0.75s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  width: 100%;
}

.splash-shell.is-visible {
  opacity: 1;
}

.splash-shell.is-hiding {
  opacity: 0;
  transition-duration: 0.55s;
}

.splash-title {
  font-size: 3.0rem;
  font-weight: bolder;
  padding: 0;
  margin: 0;
  font-family: "Plaster", system-ui;
}

.splash-title-expand {
  font-size: 1.0rem;
  font-weight: bolder;
  padding: 0;
  margin-top: .5rem;
}

.splash-title-power {
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0;
  margin-top: 0.3rem;
}

.splash-bottom {
  position: absolute;
  bottom: 1.4rem;
  font-size: 0.7rem;
  color: var(--ink);
  text-align: center;
  padding-inline: 1rem;
}

@media (max-width: 599px) {
  .splash-title {
    font-size: 2.0rem;
    font-weight: bolder;
    padding: 0;
    margin: 0;
    font-family: "Plaster", system-ui;
  }
}
