/* ==== ParaDost Theme (global) ==== */

/* Brand palette (from your latest logo) */
:root{
  --primary: #381767;      /* Bold Purple */
  --primary-700: #220f3e;  /* Deep Violet-Purple */
  --panel: #210f3e;        /* Indigo-Black tone */
  --accent: #7d2155;       /* Maroon-Magenta */
  --text: #ffffff;         /* Text on dark */
  --muted: #E0E0E0;        /* Secondary text */
  --bg-grad: radial-gradient(1100px 700px at 18% 0%, #381767 0%, #220f3e 50%, #210f3e 100%);
  --shadow: 0 10px 24px rgba(0,0,0,.35);
  --radius: 16px;
}

/* Base */
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--primary-700);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Ubuntu, Arial, sans-serif;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: #fff; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
.wrap { max-width: 1100px; margin-inline: auto; padding: 24px; }

/* Layout */
header.site-header { background: var(--bg-grad); }
footer.site-footer {
  margin-top: 48px; padding: 24px 0; color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Utilities */
.kicker {
  display:inline-block; margin-bottom:8px;
  color:#e9d7ff; background:rgba(255,255,255,.06);
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  font-size:12px; letter-spacing:.08em; text-transform:uppercase;
}
.muted { color: var(--muted); }
.grid { display:grid; gap:24px; }
@media (min-width: 840px){ .grid{ grid-template-columns: repeat(3, 1fr); } }
.center { text-align:center; }

