:root {
  --bg: #f7f5f1;
  --card: #ffffff;
  --border: #e3ddd1;
  --fg: #1c1917;
  --fg-secondary: #57534e;
  --fg-muted: #78716c;
  --accent: #b8481f;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  opacity: 0;
  transform: translateY(6px);
  animation: fade-in 0.5s ease-out forwards;
}

@keyframes fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wrap {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem;
}

.wordmark {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--fg);
}

.tagline {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--fg-secondary);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.status {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 5px;
  padding: 0.4rem 0.9rem;
  margin: 0;
}

footer {
  text-align: center;
  padding: 1.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
}

footer a {
  color: var(--fg-muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}
