/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Tokens */
:root {
  --bg:      #0e0e0e;
  --fg:      #f5f5f4;
  --muted:   #a8a29e;
}

/* Base */
body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Layout */
main {
  min-height: 100vh;
  max-width: 34rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Heading */
h1 {
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Tagline */
.tagline {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 500;
  color: var(--fg);
}

/* Description */
.description {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 30rem;
}

/* Status */
.status {
  margin-top: 3rem;
  font-size: 0.875rem;
  color: var(--muted);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.status a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: rgba(245, 245, 244, 0.3);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s;
}

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