:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #000 url("/header-bg.png") center / cover no-repeat;
}

main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1rem;
}

.logo {
  display: block;
  width: min(18.6rem, 74vw);
  height: auto;
  margin-bottom: clamp(3.5rem, 10vw, 6rem);
}

.maintenance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 10vw, 7rem) 1.5rem;
  text-align: center;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 0.8rem;
  border-radius: 0.35rem;
  background: #191919;
  color: #78effd;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.status span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ffbd17;
  box-shadow: 0 0 0 0.25rem rgb(255 189 23 / 12%);
}

h1 {
  max-width: 17ch;
  margin: 1.3rem 0 1.1rem;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

p {
  max-width: 38rem;
  margin: 0;
  color: #bcbcbc;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
}

@media (max-width: 480px) {
  main {
    padding: 0.75rem;
  }

}
