/* AstroPal — minimal shared CSS for static pages */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a1a;
  background: #fafaf7;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 48px 24px; }
header.site { padding: 24px 0 8px; border-bottom: 1px solid #e5e2da; margin-bottom: 32px; }
header.site .brand { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: #1a1a1a; text-decoration: none; }
header.site .tagline { display: block; font-size: 13px; color: #666; margin-top: 4px; font-weight: 400; }
h1 { font-size: 32px; line-height: 1.2; margin: 0 0 12px; letter-spacing: -0.02em; }
h2 { font-size: 20px; line-height: 1.3; margin: 32px 0 12px; letter-spacing: -0.01em; }
h3 { font-size: 16px; margin: 20px 0 8px; font-weight: 600; }
p { margin: 0 0 16px; }
ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 6px; }
a { color: #4a47b2; text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: #2e2a8a; }
strong { font-weight: 600; }
.muted { color: #666; font-size: 14px; }
.lead { font-size: 18px; color: #333; margin-bottom: 24px; }
.notice { background: #fff8e1; border: 1px solid #f3e0a0; padding: 16px 18px; border-radius: 8px; margin: 24px 0; font-size: 14px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 8px; }
.cta { display: inline-block; background: #1a1a1a; color: #fff; text-decoration: none; padding: 10px 18px; border-radius: 8px; font-weight: 500; font-size: 15px; }
.cta:hover { background: #4a47b2; color: #fff; }
.cta.ghost { background: transparent; color: #1a1a1a; border: 1px solid #d4d0c4; }
.cta.ghost:hover { background: #f0ede4; color: #1a1a1a; }
footer.site { margin-top: 64px; padding-top: 24px; border-top: 1px solid #e5e2da; font-size: 13px; color: #666; }
footer.site a { color: #666; text-decoration: underline; }
footer.site .links { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px; }
footer.site .copy { color: #888; }
@media (max-width: 480px) {
  .wrap { padding: 32px 18px; }
  h1 { font-size: 26px; }
  .lead { font-size: 16px; }
}
