:root {
  color-scheme: dark;
  --bg: #050505;
  --fg: #f5f5f2;
  --muted: #bcbcb4;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.title-card {
  width: min(100%, 1100px);
  text-align: center;
}

.wordmark {
  margin: 0;
}

.wordmark-img {
  display: block;
  width: clamp(240px, 58vw, 800px);
  height: auto;
  margin: 0 auto;
}

.tagline,
.status {
  margin: 0;
  line-height: 1.45;
}

.tagline {
  margin-top: 28px;
  color: var(--fg);
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 26px);
}

.status {
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 20px);
}

.status-gif {
  height: 1em;
  width: auto;
  vertical-align: -0.12em;
  margin: 0 0.4em;
  filter: invert(1);
}

.contact {
  margin: 26px 0 0;
}

.contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: clamp(14px, 1.6vw, 18px);
}

.contact a:hover {
  color: var(--fg);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .page-shell {
    padding: 24px;
  }

  .tagline {
    margin-top: 20px;
  }
}
