/* ============================================================
   core/global.css
   Reset + aurora + base
   ============================================================ */

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--plx-font-sans);
  color: var(--plx-text-primary);
  background: var(--plx-bg-canvas);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Aurora background signatures */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(20,184,255,.08), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(52,211,153,.06), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(124,58,237,.06), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.plx-text-center { text-align: center; }
.plx-text-right  { text-align: right; }
.plx-text-left   { text-align: left; }