/* Infrastructure for engineers — palette override */
:root {
  --bg: #0a0a0a;
  --bg-2: #171717;
  --accent: #7c3aed;
  --accent-2: #a78bfa;
  --accent-3: #c4b5fd;
  --text: #ede9fe;
  --muted: #6b7280;
}
body {
  background-image:
    radial-gradient(ellipse 80% 55% at 18% -8%, color-mix(in srgb, #a78bfa 14%, transparent), transparent 70%),
    radial-gradient(ellipse 60% 45% at 82% 10%, color-mix(in srgb, #7c3aed 8%, transparent), transparent 65%),
    radial-gradient(circle at 50% 55%, color-mix(in srgb, #171717 35%, transparent), #0a0a0a);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.topbar { background: color-mix(in srgb, #171717 96%, transparent); border-bottom: 1px solid color-mix(in srgb, #7c3aed 14%, transparent); }
.topbar .brand { color: #c4b5fd; }
footer.site { background: #050505; }
.card-cta {
  display: inline-block; margin-top: 12px; font-size: 0.9rem;
  color: #c4b5fd; border-bottom: 1px solid color-mix(in srgb, #c4b5fd 40%, transparent);
}
.card-cta:hover { border-bottom-color: #c4b5fd; }
