:root {
  --bg: #fafafa;
  --fg: #111111;
  --muted: #6b6b6b;
  --border: #e3e3e3;
}

* {
  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;
  padding: 24px;
}

.wrapper {
  width: 100%;
  max-width: 480px;
  text-align: left;
}

.status {
  display: inline-block;
  margin-bottom: 20px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
}

p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.contact {
  font-size: 14px;
}

.contact a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--fg);
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--muted);
  border-color: var(--muted);
}


@media (max-width: 480px) {
  body {
    align-items: flex-start;
    padding: 32px 20px;
  }

  .wrapper {
    max-width: 100%;
  }

  h1 {
    font-size: 24px;
  }
}
