:root {
  color: #1e293b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(237, 233, 254, 0.88), transparent 28rem),
    radial-gradient(circle at 95% 8%, rgba(219, 234, 254, 0.72), transparent 30rem),
    #fff;
}
a { color: inherit; }
.wrap { margin: 0 auto; max-width: 72rem; padding: 0 1.5rem; }
.site-header { background: rgba(255, 255, 255, 0.9); border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 10; }
.site-header .wrap, .footer-inner { align-items: center; display: flex; justify-content: space-between; }
.site-header .wrap { min-height: 4.5rem; }
.brand { color: #111827; font-size: 1.25rem; font-weight: 800; letter-spacing: -0.04em; text-decoration: none; }
.header-links, .footer-links { align-items: center; display: flex; flex-wrap: wrap; gap: 1rem; }
.header-links a, .footer-links a { color: #475569; font-size: 0.875rem; font-weight: 650; text-decoration: none; }
.hero { padding: 5.5rem 0 4rem; }
.eyebrow { color: #047857; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; margin: 0 0 1rem; text-transform: uppercase; }
h1, h2, h3 { color: #0f172a; letter-spacing: -0.035em; line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); max-width: 62rem; }
h2 { font-size: clamp(1.8rem, 4vw, 2.65rem); margin-bottom: 1rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
p { margin-top: 0; }
.lead { color: #475569; font-size: 1.13rem; line-height: 1.9; max-width: 58rem; }
.section-copy { color: #475569; max-width: 56rem; }
.breadcrumbs { color: #64748b; font-size: 0.84rem; margin-bottom: 1.3rem; }
.breadcrumbs a { color: #6d28d9; }
.actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }
.button { border-radius: 0.55rem; display: inline-flex; font-size: 0.9rem; font-weight: 750; justify-content: center; padding: 0.85rem 1.3rem; text-decoration: none; }
.button-primary { background: linear-gradient(135deg, #60a5fa, #a78bfa); color: #fff; }
.button-secondary { background: rgba(255, 255, 255, 0.9); border: 1px solid #c4b5fd; color: #6d28d9; }
section { padding: 4rem 0; }
.soft { background: rgba(248, 250, 252, 0.78); border-bottom: 1px solid #eef2ff; border-top: 1px solid #eef2ff; }
.grid { display: grid; gap: 1rem; margin-top: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: rgba(255, 255, 255, 0.94); border: 1px solid #e2e8f0; border-radius: 0.9rem; box-shadow: 0 18px 40px -34px rgba(76, 29, 149, 0.7); padding: 1.25rem; }
.card p { color: #64748b; font-size: 0.93rem; margin-bottom: 0; }
.check-list { display: grid; gap: 0.75rem; list-style: none; margin: 1.5rem 0 0; padding: 0; }
.check-list li { color: #475569; padding-left: 1.65rem; position: relative; }
.check-list li::before { color: #10b981; content: "✓"; font-weight: 800; left: 0; position: absolute; }
.disclaimer { background: #fffbeb; border: 1px solid #fde68a; border-radius: 0.8rem; color: #854d0e; font-size: 0.9rem; margin-top: 1.5rem; max-width: 58rem; padding: 1rem; }
.cta { background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 0.9rem; margin-top: 2rem; padding: 1.4rem; }
.cta strong { color: #065f46; display: block; font-size: 1.15rem; margin-bottom: 0.85rem; }
footer { border-top: 1px solid #e2e8f0; color: #64748b; font-size: 0.85rem; padding: 1.3rem 0; }
@media (max-width: 780px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 3rem; }
  section { padding: 3.25rem 0; }
  .header-links a:not(.header-cta) { display: none; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 0.75rem; }
}
