:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #080807;
  color: #f7f3ea;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
}

.splash {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #080807;
}

.splash__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-reveal {
  --black-logo-opacity: 0;
  --overlay-opacity: 0;
  --zakim-scale: 9;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: var(--overlay-opacity);
  pointer-events: none;
  mask-type: luminance;
  z-index: 1;
}

.brand-reveal__logo,
.brand-lock__logo {
  transform: scale(var(--zakim-scale));
  transform-box: view-box;
  transform-origin: center;
}

.brand-lock__logo,
.brand-lock__branding {
  opacity: var(--black-logo-opacity);
}

.coming-soon {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 0;
  font-size: clamp(0.8125rem, 3.1vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.site-copyright {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  z-index: 2;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 640px) {
  body {
    overflow: auto;
  }
}
