:root {
  --stage-width: 750px;
  --font-sans: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  font-family: var(--font-sans);
}

body {
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.landing-shell {
  width: min(100vw, var(--stage-width));
  min-height: 100vh;
  background: #000;
}

.landing-stage {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.landing-stage__hero {
  width: 100%;
  height: auto;
}

.landing-stage__overlay {
  position: absolute;
  inset: 0;
}

.landing-stage__overlay--cta {
  z-index: 1;
}

.landing-stage__overlay--legal {
  z-index: 2;
  pointer-events: none;
}

.landing-stage__legal-logo,
.landing-stage__legal {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
}

.landing-stage__legal-logo {
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.42));
}

.landing-stage__legal-logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.landing-stage__legal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 12px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.92);
}

.landing-stage__privacy {
  color: #fff;
  text-decoration: underline;
  pointer-events: auto;
}

.cta {
  position: absolute;
  display: block;
  z-index: 1;
  transform-origin: top left;
}

.cta__image {
  display: block;
  width: 100%;
  height: auto;
}

.cta--text {
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.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;
}
