*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  background: #000;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2rem;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.wordmark {
  font-size: clamp(2.5rem, 10vw, 7rem);
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.wordmark-bold {
  font-weight: 900;
}

.wordmark-light {
  font-weight: 300;
  margin-left: 0.2em;
}

.tagline {
  margin-top: 1.5rem;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}
