:root {
  color-scheme: light;
  --bg: #ffffff;
  --fg: #231f20;
  --accent: #ca433a;
  --muted: #8a8a8a;
}

* {
  box-sizing: border-box;
}

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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: center;
  padding: 2rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  width: min(340px, 70vw);
  height: auto;
}

.status {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.sub {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}
