:root {
  color-scheme: dark;
  --cyan: #00aeef;
  --pink: #ee2e71;
  --violet: #8b5cf6;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
}

.stage {
  position: relative;
  display: grid;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  filter: blur(20px);
}

.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background-size: auto, 100% 4px;
  opacity: 0.42;
}

.spark-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.logo-scene {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1.52;
  place-items: center;
}

.logo-scene::before {
  content: "";
  position: absolute;
  inset: -24%;
  z-index: -1;
  opacity: 0.95;
}

.grami-logo {
  display: block;
  width: 58%;
  height: auto;
}

@media (max-width: 680px) {
  .logo-scene {
    width: clamp(190px, 48vw, 280px);
  }
}