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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #ffffff;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.landing__logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.landing__heading {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #333333;
}


.landing__message {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: #888888;
  max-width: 28ch;
  line-height: 1.5;
}
