:root {
  --bg: #1a1f2e;
  --fg: #e8e6e1;
  --muted: #9a958c;
  --accent: #c4a574;
  --link: #7eb8da;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, #2a3348 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 80%, #3a2a22 0%, transparent 50%),
    var(--bg);
  color: var(--fg);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}
.wrap {
  max-width: 36rem;
  margin: 0 auto;
  padding: 18vh 1.5rem 4rem;
}
h1 {
  font-size: clamp(2.75rem, 8vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.05;
}
.lede {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0 0 2rem;
}
.cta {
  color: var(--link);
  font-size: 1.1rem;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--link) 40%, transparent);
}
.cta:hover { border-bottom-color: var(--link); }
@media (prefers-reduced-motion: no-preference) {
  .wrap { animation: rise 0.7s ease-out both; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
  }
}
