/* ── Base ───────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Progress Bars ──────────────────────────────────────────────── */
.progress-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #a78bfa, #818cf8);
  transition: width 1s ease-out;
  will-change: width;
}

/* ── Bento Cards ────────────────────────────────────────────────── */
.bento-card {
  transition: border-color 0.3s ease;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

/* ── Selection ──────────────────────────────────────────────────── */
::selection {
  background: rgba(167, 139, 250, 0.3);
  color: #fff;
}

/* ── Reduce motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .progress-fill {
    transition: none;
  }
  .bento-card {
    transition: none;
  }
}
