/* davehatz.ai — placeholder styles. No JS, no external assets. */

:root {
  --bg: #131118;
  --bg-glow: #251c33;
  --text: #efeaf6;
  --muted: #a89fbb;
  --accent: #b78bff;
  --accent-strong: #7d4fd3;
  --card-line: rgba(255, 255, 255, 0.08);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f8f6fb;
    --bg-glow: #ece4f8;
    --text: #241b33;
    --muted: #675d7d;
    --accent: #6f3fd0;
    --accent-strong: #5a2eb4;
    --card-line: rgba(36, 27, 51, 0.12);
  }
}

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

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1.25rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(60rem 40rem at 30% -10%, var(--bg-glow), transparent 60%),
    var(--bg);
  text-align: center;
}

.card {
  max-width: 34rem;
  padding: 3rem 2rem;
  border: 1px solid var(--card-line);
  border-radius: 1rem;
}

.wordmark {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: lowercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.wordmark span { color: var(--accent); }

h1 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lede {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.lede a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.button {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 0.5rem;
  background: var(--accent-strong);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.button:hover { background: var(--accent); }

footer {
  font-size: 0.85rem;
  color: var(--muted);
}
