* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;

  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;

  background:
    radial-gradient(
      circle at 50% 20%,
      #242424 0%,
      #141414 44%,
      #090909 100%
    );

  color: #f5f5f5;
}

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px;
}

.content {
  width: min(900px, 100%);
  text-align: center;
}

.brand {
  margin-bottom: 28px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.32em;

  color: #b8b8b8;
}

h1 {
  margin: 0;

  font-size:
    clamp(
      42px,
      7vw,
      86px
    );

  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.tagline {
  margin: 30px 0 0;

  font-size:
    clamp(
      17px,
      2.2vw,
      24px
    );

  color: #c8c8c8;
  letter-spacing: 0.06em;
}

.coming-soon {
  margin: 46px 0 0;

  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;

  color: #777;
}