:root {
  --ink: #0a0a0b;
  --paper: #ffffff;
  --sign: #0f4c5c;
  --coral: #e85a7a;
  --font: "Outfit", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: #050607;
  color: var(--paper);
  font-family: var(--font);
}

.stage {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 55% 45% at 70% 15%, rgba(15, 76, 92, 0.45), transparent 60%),
    radial-gradient(ellipse 40% 35% at 15% 85%, rgba(184, 61, 92, 0.22), transparent 55%),
    linear-gradient(180deg, #101012 0%, #0a0a0b 55%, #0b1214 100%);
}

.pair {
  text-align: center;
  padding: 2rem;
  max-width: 28rem;
}

.logo {
  height: 2rem;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.eyebrow {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

h1 {
  margin: 0.6rem 0 0;
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  letter-spacing: 0.28em;
  font-weight: 650;
  padding-left: 0.28em;
}

.hint, .status {
  margin: 1rem auto 0;
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.status { color: rgba(255, 255, 255, 0.4); font-size: 0.9rem; }

.play {
  position: fixed;
  inset: 0;
  background: #000;
}

.play img, .play video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.play video.hidden, .play img.hidden, .hidden { display: none !important; }

.watermark {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
