/* Design tokens mirror quiqq.link / auth.quiqq.dev (quiqq.link docs/DESIGN.md). */
:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --text: #111111;
  --text-secondary: #666666;
  --border: #e0e0e0;
  --link: #111111;
  --focus: #2563eb;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111111;
    --surface: #1c1c1e;
    --text: #e8e8e8;
    --text-secondary: #8e8e93;
    --border: #2c2c2e;
    --link: #e8e8e8;
    --focus: #409cff;
  }
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    'Helvetica Neue', sans-serif;
  line-height: 1.5;
}

a {
  color: var(--link);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.card {
  width: 100%;
  max-width: 480px;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.wordmark {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
}

.lead:last-child {
  margin-bottom: 0;
}
