/* Base reset & mobile-first layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0D0D0D; /* Noir */
  color: #F4F4F4;           /* Glass */
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding: 1rem;
}

.container {
  max-width: 100%;
}

.logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 2rem;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F4F4F4;
  margin-bottom: 1rem;
}

.status {
  font-size: 1rem;
  line-height: 1.5;
  color: #F4F4F4;
}

/* Slight upscaling on larger screens */
@media (min-width: 600px) {
  .tagline {
    font-size: 2rem;
  }
  .status {
    font-size: 1.25rem;
  }
}
