:root {
  color-scheme: light dark;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f5f7;
  color: #1b1d21;
}

* {
  box-sizing: border-box;
}

body {
  display: grid;
  min-height: 100vh;
  margin: 0;
  padding: 24px;
  place-items: center;
}

.placeholder {
  width: min(100%, 560px);
  text-align: center;
}

.eyebrow {
  color: #626872;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.05;
}

#status {
  margin: 0 0 24px;
  color: #626872;
}

button {
  padding: 10px 16px;
  border: 1px solid #1b1d21;
  border-radius: 6px;
  background: #1b1d21;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
}

button:hover {
  background: #343840;
}

button:focus-visible {
  outline: 3px solid #f0b429;
  outline-offset: 3px;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #15171a;
    color: #f4f5f7;
  }

  .eyebrow,
  #status {
    color: #aeb4bd;
  }

  button {
    border-color: #f4f5f7;
    background: #f4f5f7;
    color: #15171a;
  }

  button:hover {
    background: #d9dde3;
  }
}
