:root {
  color-scheme: dark;
  background: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #000;
}

.site-shell {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 2rem;
}

.hero {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.brand-mark {
  display: block;
  width: clamp(4rem, 11vw, 7rem);
  height: auto;
  opacity: 0.92;
}

.wordmark {
  display: block;
  width: min(82vw, 980px);
  height: auto;
}

.wordmark text {
  fill: #fff;
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  font-size: 118px;
  font-weight: 300;
  letter-spacing: -0.055em;
  dominant-baseline: middle;
}

.tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.015em;
}
