/* Minimal "coming soon" page */
:root {
  color-scheme: light;
  --bg: #ffffff;
  --fg: #0b0d12;
  --muted: rgba(11, 13, 18, 0.62);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html.no-scroll,
html.no-scroll body {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 16px;
  transition: opacity 0.35s ease;
}

.intro__video {
  width: min(1100px, 100%);
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  background: #ffffff;
}

.intro__skip {
  position: fixed;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #0b0d12;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.intro__skip:hover {
  background: rgba(255, 255, 255, 0.98);
}

.intro__skip:active {
  transform: translateY(1px);
}

.intro--hidden {
  opacity: 0;
  pointer-events: none;
}

.intro--needs-tap .intro__skip {
  font-weight: 600;
}

.wrap {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 48px 18px;
  text-align: center;
}

h1 {
  margin: 0 0 10px 0;
  font-size: clamp(32px, 6vw, 54px);
  letter-spacing: 0.02em;
}

.soon {
  margin: 0;
  font-size: clamp(18px, 3vw, 22px);
  color: var(--muted);
}
