@font-face {
  font-family: "Mont";
  src: url("/assets/Mont-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("/assets/Mont-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: "Mont", Arial, sans-serif;
  color: #171717;
  background: #ffffff;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  overflow-x: hidden;
  background: #ffffff;
}

.placeholder {
  width: min(100%, 62rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.signet {
  width: clamp(4.5rem, 8vw, 6.25rem);
  height: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.identity h1 {
  margin: 0;
  font-size: clamp(3.75rem, 10vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.descriptor {
  max-width: 42rem;
  margin: clamp(1.25rem, 3vw, 1.75rem) auto 0;
  color: #555555;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.status {
  margin: clamp(3rem, 7vw, 5rem) 0 0;
  padding: 0.7rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  color: #333333;
  background: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status span {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #171717;
}

@media (max-width: 34rem) {
  .placeholder {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .descriptor {
    max-width: 20rem;
  }

  .status {
    font-size: 0.68rem;
  }
}
