/* ─── ROLES ─── */
.s_nexus_roles {
  background: linear-gradient(180deg, #130844 0%, var(--deep) 100%);
  padding: 100px 0;
}

.s_nexus_roles_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.s_nexus_role_card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.s_nexus_role_card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

.s_nexus_role_icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.s_nexus_role_icon .s_nexus_icon_img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.s_nexus_ri_indigo { background: rgba(59,31,163,0.4); }
.s_nexus_ri_red    { background: rgba(224,32,64,0.2); }
.s_nexus_ri_teal   { background: rgba(0,180,160,0.15); }

.s_nexus_role_title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.s_nexus_role_perms {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.s_nexus_role_perms li {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
}

.s_nexus_role_perms li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
