:root {
  color-scheme: dark;
  background: #020611;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, #071d45 0%, #020611 58%, #000 100%);
}

.brand {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding:
    max(1rem, env(safe-area-inset-top))
    max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
}

.brand__picture {
  display: block;
  width: min(92vw, 96rem);
  max-height: 92vh;
  max-height: 92svh;
  filter: drop-shadow(0 0 clamp(1rem, 4vw, 4rem) rgb(0 107 255 / 35%));
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 92vh;
  max-height: 92svh;
  object-fit: contain;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (orientation: portrait) {
  .brand__picture {
    width: min(96vw, 64rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand__picture {
    animation: reveal 700ms ease-out both;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: scale(0.985);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}
