:root {
  --bg: #fafaf7;
  --text: #0f172a;
  --muted: #6b7280;
  --accent: #059669;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.brand {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 32px;
}

.brand-dot { color: var(--accent); }

h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.25;
  margin: 0 0 16px;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.lede a { color: var(--accent); }

footer {
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-size: 0.85rem;
}
