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

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
}

.coming-soon {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #000;
}

.brand-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(24px, 8vw, 96px);
  opacity: 0.45;
}

.brand-fallback img {
  display: block;
  width: min(86vw, 980px);
  height: auto;
}

.launch-video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.play-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 50px;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  background: rgba(12, 12, 12, 0.82);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.play-button[hidden] {
  display: none;
}

.play-button:hover {
  border-color: rgba(255, 133, 0, 0.85);
  background: rgba(24, 18, 12, 0.9);
  transform: translateY(-2px);
}

.play-button:focus-visible {
  outline: 3px solid #ff8a00;
  outline-offset: 4px;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #ff8a00;
}

.no-script {
  position: fixed;
  z-index: 3;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: 1rem;
  margin: 0;
  color: #fff;
  text-align: center;
}

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

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

  .brand-fallback {
    opacity: 1;
  }
}
