@font-face {
  font-family: "OT Neue Montreal Squeezed";
  src: url("fonts/OTNeueMontreal-MediumSqueezed.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

html, body {
  height: 100%;
  background: #000;
}

.wrap {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-family: "OT Neue Montreal Squeezed", sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(2.5rem, 8vw, 7rem);
  letter-spacing: 0.02em;
}

.cursor {
  display: inline-block;
  width: 0.06em;
  height: 0.85em;
  margin-left: 0.08em;
  background: #fff;
  vertical-align: -0.08em;
  animation: blink 0.9s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
