/* Holding-page styles. Palette transcribed from the marketing site's
 * tokens.css so the page previews the brand; keep the two in step if the
 * site's ground colors ever change. */

:root {
  --bg: #f9f4ef;
  --surface: #ffffff;
  --border: #e2d0c4;
  --text: #221b1a;
  --text-muted: #675956;
  --accent: #6d28d9;
  --accent-hover: #5b21b6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  text-align: center;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  max-width: 34rem;
  box-shadow: 0 2px 24px rgba(34, 27, 26, 0.06);
}

.wordmark {
  margin: 0 0 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--accent);
}

h1 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  font-weight: 650;
}

.lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
}

.contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.05rem;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--accent-hover);
  text-decoration: underline;
}
