:root {
  color-scheme: dark;
  --bg: #0d0f1a;
  --card: #161a2e;
  --text: #e8ecf4;
  --muted: #9aa3b5;
  --accent: #4a90d9;
  --brand: #7eb3e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(74, 144, 217, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(232, 200, 122, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.card {
  width: min(32rem, 100%);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 2rem 1.75rem 2.25rem;
}

.brand {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
}

h1 {
  margin: 0 0 0.85rem;
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.2;
}

.lede {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.muted {
  margin: 0.5rem 0 0;
  color: rgba(154, 163, 181, 0.85);
  font-size: 0.9rem;
  line-height: 1.45;
  font-family: system-ui, -apple-system, sans-serif;
}
