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

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #111;
  color: #fff;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at center, #1a1a1a 0%, #050505 70%);
}

.logo {
  width: 96px;
  height: 96px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

h1 {
  font-size: clamp(3rem, 12vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}

.tagline {
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
  opacity: 0.7;
  text-transform: uppercase;
}
