* {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
  background: #0b0b0d;
  color: #f5f5f5;
  font-family: "Oswald", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  padding: 2rem;
}

.bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(-25vh);
  z-index: 0;
}

.scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(11, 11, 13, 0.72);
}

.content {
  position: relative;
  z-index: 2;
}

.brand {
  font-size: clamp(3.5rem, 14vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.nxt {
  color: #f5f5f5;
}

.rep {
  color: #c6ff00;
}

.tagline {
  margin-top: 1rem;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.soon {
  margin-top: 1.75rem;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c6ff00;
}
